第一个问题:使用iclient openlayers,底图使用4490经纬度坐标系,现在手中有一个4525投影坐标系的服务,在叠加时,采用如下方法:
new MapService(jbntUrl).getMapInfo((serviceResult) => {
const mapJSONObj = serviceResult.result
const mapRest = new TileSuperMapRest(TileSuperMapRest.optionsFromMapJSON(jbntUrl, mapJSONObj))
const layer = new Tile({
source: mapRest,
})
map.addLayer(layer);
});
目前无法加载,不知道原因在哪里。
第二个问题,发布的瓦片服务,在使用xyz时,为什么会被自动投影为3857,这里需要如何修改?