在iserver里面预览可以正常显示注记,在vue里面调用地图服务,不显示注记,且点状符号也不跟我在iserver预览里面看到的一样,已经清理过isever缓存我的代码如下 addServerLayer() { const iServerLayerUrl = 'http://localhost:8090/iserver/services/map-HuangHeLiuYu/rest/maps/%E9%BB%84%E6%B2%B3%E6%B0%B4%E5%BA%93%E5%88%86%E5%B8%83%E5%9B%BE'; this.iServerLayer = new TiledVectorLayer(iServerLayerUrl, { crs: L.CRS.EPSG3857, cacheEnabled: true, }); this.map.addLayer(this.iServerLayer); this.map = L.map('centerMap', { zoom: 5, center: [39.89945, 116.40969], // 初始中心点坐标 });