I am trying to hide the markers behind my cluster and only have them show when the marker is clicked.
This is how it appears:
However when I click the cluster and exit it, it goes back to how it should look (second pic)
(This is how I want it to look originally)
This is my code:
JavaScript
x
20
20
1
var markers = new L.MarkerClusterGroup();
2
3
4
5
6
7
8
markers.addLayer(L.marker([currentLatitude, currentLongitude], { icon: populationIcon }).addTo(mymap).bindPopup(
9
`The population of ${thisCountry.countryName} is ${thisCountry.countryPopulation}.`));
10
11
12
markers.addLayer(capitalMarker = L.marker([currentLatitude, currentLongitude], { icon: cityIcon }).addTo(mymap).bindPopup(
13
`The capital city of ${thisCountry.countryName} is ${thisCountry.countryCapital}.`));
14
15
markers.addLayer(carMarker = L.marker([currentLatitude, currentLongitude], { icon: carIcon }).addTo(mymap).bindPopup(
16
`They drive on the ${thisCountry.carSide} of the road in ${thisCountry.countryName}.`));
17
18
//add cluster to map
19
mymap.addLayer(markers);
20
Advertisement
Answer
You are adding the created marker to the map too and this is wrong (icon: carIcon }).addTo(mymap).bindPopup(
).
Change
JavaScript
1
4
1
markers.addLayer(carMarker = L.marker([currentLatitude, currentLongitude], { icon: carIcon })
2
.addTo(mymap)
3
.bindPopup(`They drive on the ${thisCountry.carSide} of the road in ${thisCountry.countryName}.`));
4
to
JavaScript
1
3
1
markers.addLayer(carMarker = L.marker([currentLatitude, currentLongitude], { icon: carIcon })
2
.bindPopup(`They drive on the ${thisCountry.carSide} of the road in ${thisCountry.countryName}.`));
3