Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

389
Views
Los marcadores de MarkerCluster aún se muestran detrás del clúster

Estoy tratando de ocultar los marcadores detrás de mi grupo y solo mostrarlos cuando se hace clic en el marcador.

Así es como aparece:

Así es como aparece. Sin embargo, cuando hago clic en el clúster y salgo, vuelve a tener el aspecto que debería tener (segunda foto)

Sin embargo, cuando hago clic en el clúster y salgo, vuelve a tener el aspecto que debería tener (segunda foto)

Así es como quiero que se vea originalmente

(Así es como quiero que se vea originalmente)

Este es mi código:

 var markers = new L.MarkerClusterGroup(); markers.addLayer(L.marker([currentLatitude, currentLongitude], { icon: populationIcon }).addTo(mymap).bindPopup( `The population of ${thisCountry.countryName} is ${thisCountry.countryPopulation}.`)); markers.addLayer(capitalMarker = L.marker([currentLatitude, currentLongitude], { icon: cityIcon }).addTo(mymap).bindPopup( `The capital city of ${thisCountry.countryName} is ${thisCountry.countryCapital}.`)); markers.addLayer(carMarker = L.marker([currentLatitude, currentLongitude], { icon: carIcon }).addTo(mymap).bindPopup( `They drive on the ${thisCountry.carSide} of the road in ${thisCountry.countryName}.`)); //add cluster to map mymap.addLayer(markers);
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

También está agregando el marcador creado al mapa y esto es incorrecto ( icon: carIcon }).addTo(mymap).bindPopup( ).

Cambio

 markers.addLayer(carMarker = L.marker([currentLatitude, currentLongitude], { icon: carIcon }) .addTo(mymap) .bindPopup(`They drive on the ${thisCountry.carSide} of the road in ${thisCountry.countryName}.`));

a

 markers.addLayer(carMarker = L.marker([currentLatitude, currentLongitude], { icon: carIcon }) .bindPopup(`They drive on the ${thisCountry.carSide} of the road in ${thisCountry.countryName}.`));
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!