Here I am trying to update the markers on map upon successful ajax request but I am being unable to remove previously added markers before adding new one. How can I do it here ?
JavaScript
x
37
37
1
$(document).ready(function(){
2
var element = document.getElementById('map');
3
element.style = 'height:600px;';
4
map = L.map(element);
5
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
6
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
7
}).addTo(map);
8
var target = L.latLng('33.812358', '79.324126');
9
10
var locations = [
11
["1", lat, lng}],
12
];
13
for (var i = 0; i < locations.length; i++) {
14
marker = new L.marker([locations[i][1], locations[i][2]])
15
.bindPopup(locations[i][0])
16
.addTo(map);
17
}
18
map.setView(target, 14);
19
L.marker(target).addTo(map);
20
21
$('.click').click(function(e) {
22
url=$(this).attr('url');
23
$.ajax({
24
url: url,
25
type: 'GET',
26
success: function (data) {
27
var locations = [["1", 29.72184, 90.303634],];
28
for (var i = 0; i < locations.length; i++) {
29
marker = new L.marker([locations[i][1], locations[i][2]])
30
.bindPopup(locations[i][0])
31
.addTo(map);
32
}
33
map.setView(target, 14);
34
var markers = L.markerClusterGroup();
35
markers.clearLayers(map._layers);
36
L.marker(target).addTo(map);
37
Advertisement
Answer
Here’s an example, that stores the Marker
inside each location Object of your locations
Array.
Additionally, create two functions, drawLocationsToMap
and removeLocationsFromMap
.
JavaScript
1
68
68
1
const Map = L.map('map');
2
3
L.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
4
maxZoom: 18,
5
attribution: 'Map data © <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, ' +
6
'Imagery © <a href="https://www.mapbox.com/">Mapbox</a>',
7
id: 'mapbox/streets-v11',
8
tileSize: 512,
9
zoomOffset: -1
10
}).addTo(Map);
11
12
13
let locations = [{
14
lat: 45.8150,
15
lng: 15.9819,
16
content: "<b>Zagreb</b><br>Description..."
17
},
18
{
19
lat: 43.5081,
20
lng: 16.4402,
21
content: "<b>Split</b><br>Some descrip..."
22
},
23
{
24
lat: 42.6507,
25
lng: 18.0944,
26
content: "<b>Dubrovnik</b><br>Descript..."
27
},
28
];
29
30
const drawLocationsToMap = () => {
31
locations.forEach(loc => {
32
if (!loc.Marker) {
33
loc.Marker = new L.marker([loc.lat, loc.lng]);
34
loc.Marker.bindPopup(loc.content);
35
}
36
loc.Marker.addTo(Map);
37
});
38
};
39
40
const removeLocationsFromMap = () => {
41
locations.forEach(loc => {
42
Map.removeLayer(loc.Marker)
43
});
44
};
45
46
Map.setView([locations[0].lat, locations[0].lng], 5);
47
48
// Draw current locations to map
49
drawLocationsToMap();
50
51
// Add new marker
52
// (i.e: on click or AJAX success. I'll use timeout for demo)
53
setTimeout(() => {
54
55
// Remove all locations from map!
56
removeLocationsFromMap();
57
58
// Update the locations array with a single location
59
locations = [{
60
lat: 44.8666,
61
lng: 13.8496,
62
content: "Pula, Croatia"
63
}];
64
65
// Draw updated locations!
66
drawLocationsToMap();
67
68
}, 3000);
JavaScript
1
3
1
#map {
2
height: 190px;
3
}
JavaScript
1
5
1
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A==" crossorigin="" />
2
3
<div id="map"></div>
4
5
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js" integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA==" crossorigin=""></script>