When I try to access our ArcGIS Server through the "ArcGISMapServerImageryProvider", I get the following error:
An error occurred in "ArcGisMapServerImageryProvider": An error occurred while accessing //www.gis.stadt-zuerich.ch/maps/services/wms/WMS-ZH-STZH-OGD/MapServer.
If I try the WMS interface using this config:
addAdditionalLayerOption(
‘United States GOES Infrared’,
new Cesium.WebMapServiceImageryProvider({
url : ‘http://www.gis.stadt-zuerich.ch/maps/services/wms/WMS-ZH-STZH-OGD/MapServer/WMSServer?’,
layers : ‘1’,
proxy : new Cesium.DefaultProxy(’/proxy/’)
}));
I Get
An error occurred in "WebMapServiceImageryProvider": Failed to obtain image tile X: 1 Y: 0 Level: 1.
I can sucessfully get a WMS tile in the browser by typing in the following URL:
http://www.gis.stadt-zuerich.ch/maps/services/wms/WMS-ZH-STZH-OGD/MapServer/WMSServer?VERSION=1.3.0&REQUEST=GetMap&CRS=EPSG:4326&Styles=&FORMAT=image/png&BGCOLOR=0xFFFFFF&TRANSPARENT=FALSE&bbox=47.315492730374444,8.443821782566665,47.43963707749998,8.631776103472221&WIDTH=800&HEIGHT=800&Layers=Stadtplan
what am I doing wrong? Im using the sandbox
Thanks!