如题所示,如何在vite框架,supermap/iclient-ol": "^11.1.1" 加载
https://iserver.supermap.io/iserver/services/map-china400/restjsr/v1/vectortile/maps/China_4326/style.json
我写的代码如下所示
import { Tile as TileLayer, Vector as VectorLayer, Image as ImageLayer, VectorTile as VectorTileLayer } from 'ol/layer';
import { TileSuperMapRest, VectorTileSuperMapRest,GetFeaturesByGeometryParameters,FeatureService } from '@supermap/iclient-ol'; import { GeoJSON, MVT } from 'ol/format'
import { MapboxStyles } from '@supermap/iclient-ol/overlay/vectortile/MapboxStyles';
function abcd(){
let styleURL = 'https://iserver.supermap.io/iserver/services/map-china400/restjsr/v1/vectortile/maps/China_4326/style.json'
var format = new MVT();
var style = new MapboxStyles({
url: styleURL,
map: map.value,
})
let vectorLayer = new VectorTileLayer({
declutter: true,
source: new VectorTileSuperMapRest({
url: styleURL,
projection: 'EPSG:4326',
format: format
}),
style: style.getStyleFunction()
});
map.value.addLayer(vectorLayer)
}