我想更改OpenLayers地图上某个地方的文字,需要将其从波斯湾更改为阿拉伯湾
我试图查看是否有任何方法可以使用 OpenLayers API 文档进行此更改,但没有找到运气。
https://openlayers.org/en/latest/apidoc/
以下是地图位置
以下是代码:
import TileLayer from 'ol/layer/Tile';
import VectorLayer from 'ol/layer/Vector';
....
vectorSource = new VectorSource({
// url: '/assets/data/countries.geojson',
url: '/assets/data/countries.json',
format: new GeoJSON()
});
mapLayer = new VectorLayer({
source: this.vectorSource,
declutter: true
});
markerLayer = new VectorLayer({
source: new VectorSource({}),
style: this.mapStyle
});
linesLayer = new VectorLayer({
source: new VectorSource({}),
style: this.lineStyle
});
....
有什么办法可以改变这个吗?我仍在通过OpenLayers API来查找是否存在。