首页 / 浏览问题 / 云GIS / 问题详情
怎样访问ArcGis地图?
49EXP 2017年10月27日

web端做了一个访问iServer地图的代码。

layer = new SuperMap.Layer.TiledDynamicRESTLayer(MapName, MapServerUrl, {
        transparent : true,
        cacheEnabled : true
    }, {
        maxResolution : "auto",
        useCanvas : false,
        useCORS : true
    });

现在我想把它的服务地址换成arcgis的。原来是iServer的。

arcgis的服务地址:http://省略:6080/arcgis/rest/services/baseData/dzdt/MapServer

iServer服务地址:http://省略iserver/services/map-arcgis-dzdt/rest/maps/电子地图

请问怎么转换?

1个回答

iClient js不能直接对接ArcGIS Server的服务,可以先通过iServer转发。
iServer可以直接转发ArcGIS Server的地图服务也可以发布ArcGIS Server生成的地图缓存(ArcGIS 缓存)、TPK瓦片包
1,780EXP 2017年10月27日
...