gpt4 book ai didi

javascript - 如何从 OSM 中删除标记

转载 作者:行者123 更新时间:2023-12-02 23:39:19 26 4
gpt4 key购买 nike

我正在制作一个使用开放街道 map 的 Web 应用程序,并向其中添加一些标记。我需要删除 map 上的所有图层。

我已经尝试过在其他问题上找到的一些示例,但没有一个对我有用。我不确定我是否使用开放层。

这是创建 map 的代码:

function initialize_map() {
navigator.geolocation.getCurrentPosition(onSuccess, onError);
map = new ol.Map({
target: "map",
layers: [
new ol.layer.Tile({
source: new ol.source.OSM({
url: "https://a.tile.openstreetmap.org/{z}/{x}/{y}.png"
})
})
],
view: new ol.View({
center: ol.proj.fromLonLat([mapLng, mapLat]),
zoom: mapDefaultZoom
})
});
GetDados();
}

这是我用来添加标记的代码:

function add_map_point(lat, lng) {
var vectorLayer = new ol.layer.Vector({
source: new ol.source.Vector({
features: [new ol.Feature({
geometry: new ol.geom.Point(ol.proj.transform([parseFloat(lng), parseFloat(lat)], 'EPSG:4326', 'EPSG:3857')),
})]
}),
style: new ol.style.Style({
image: new ol.style.Icon({
anchor: [0.5, 0.5],
anchorXUnits: "fraction",
anchorYUnits: "fraction",
src: "https://www.freeiconspng.com/minicovers/bus-driver-icon-png-1.png"
})
})
});
map.addLayer(vectorLayer);
}

最佳答案

while (map.getLayers().removeAt(1)) {}

将从 map 中删除除索引 0(即您的 OSM 图层)之外的所有图层。

但是为什么每个标记都需要一个图层呢?如果您在初始化 map 时创建矢量图层,则只需添加点

function initialize_map() {
navigator.geolocation.getCurrentPosition(onSuccess, onError);
var vectorLayer = new ol.layer.Vector({
source: new ol.source.Vector(),
style: new ol.style.Style({
image: new ol.style.Icon({
anchor: [0.5, 0.5],
anchorXUnits: "fraction",
anchorYUnits: "fraction",
src: "https://www.freeiconspng.com/minicovers/bus-driver-icon-png-1.png"
})
})
});
map = new ol.Map({
target: "map",
layers: [
new ol.layer.Tile({
source: new ol.source.OSM({
url: "https://a.tile.openstreetmap.org/{z}/{x}/{y}.png"
})
}),
vectorLayer
],
view: new ol.View({
center: ol.proj.fromLonLat([mapLng, mapLat]),
zoom: mapDefaultZoom
})
});
GetDados();
}

function add_map_point(lat, lng) {
vectorLayer.getSource().addFeature(
new ol.Feature({
geometry: new ol.geom.Point(ol.proj.transform([parseFloat(lng), parseFloat(lat)], 'EPSG:4326', 'EPSG:3857')),
})
);
}

并且可以轻松清除它们

vectorLayer.getSource().clear();

关于javascript - 如何从 OSM 中删除标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56145477/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com