I’m displaying historical maps on a Cesium globe using WMS (Web Map Service) imagery layers. The maps contain important text elements (legends, labels, statistics) that become blurry and pixelated when users zoom in, making them difficult to read.
Here’s my uploaded image URL: https://eureka.cridb.com/media/2/22/229/2291/229170/it.jpg
It looks like this on the Globe
- Initial State
- When I Zoomed in (review the url): Jam
Here’s my code for the display map on the cesium globe
const wmsUrl = `https://gis.cridb.com/api/wms?map=${mapUrl}\`;
const newProvider = new Cesium.WebMapServiceImageryProvider({
url: wmsUrl,layers: ‘warped’,
parameters: {
transparent: ‘true’,
format: ‘image/png’,
},
});
import { useCesium } from ‘resium’;
const { viewer } = useCesium();
viewer.imageryLayers.addImageryProvider(ip) // ip contains the newProvider’s value
Can you please help me to resolve this issue?
