Our viewer code is something like this:
var viewer = new Cesium.Viewer(‘cesiumContainer’, {
imageryProvider : new Cesium.ArcGisMapServerImageryProvider({
url : ‘xxx’ ,
maximumLevel:18
})
Now our tiles have 0 to 19 levels and the first few levels is globe wide.
But in Cesium it only shows in its own region, and the entire globe is blank.
We’ve tried many ways to make it look better but so fa no good.
Still I gets this error message:
Cesium.js:6466 GET http://xxxx/arcgis/rest/services/gz_all/MapServer/tile/19/0/0 404 (Not Found)
while our tiles does have level 19.
and Even after I manually specify maximumLevel at 18
Why and how to make it stop?