地图服务名称通常以 map-xxx 开头, 如 https://iserver.supermap.io/iserver/services/map-world/
配置通用的服务接口:

目前项目主要使用的接口有: rest 和 wms130
wms110 版本服务支持该值的目的是向后兼容
示例服务地址: https://iserver.supermap.io/iserver/services/map-china400/rest/maps/China/zxyTileImage

示例服务地址: https://iserver.supermap.io/iserver/services/map-china400/wms130
数据服务名称通常以 data-xxx 开头, 如 https://iserver.supermap.io/iserver/services/data-jingjin
配置通用的服务接口:

https://iserver.supermap.io/iserver/services/data-jingjin/rest/data/featureResults.geojsonJingjin:County_L示例服务地址: https://iserver.supermap.io/iserver/services/data-world/wfs200

问题原因:

问题原因:
可能是数据库数据不同步,先用文件型数据源试下接口请求是否正确


问题原因:
iserver 2023 11i ,不支持 geojson 输出supermap wfs2.0 执行 GetFeature 操作支持 outputFormat=json 输出,但是 xml 表述文档中没有加上<ows:Value>json</ows:Value>, 猜测是这个原因导致 arcgis 提示不支持
获取服务的四至范围,用来实现服务跳转定位
利用上面的问题6,获取到服务的四至范围,然后拼接成 BBOX 参数,
const bbox = `${bounds.left},${bounds.bottom},${bounds.right},${bounds.top}`
const url = `https://iserver.supermap.io/iserver/services/map-china400/rest/maps/China/legend.rjson?returnVisibleOnly=true&bbox=-20037508.34,-20037508.34,20037508.34,20037508.34`