Git Product home page Git Product logo

Comments (1)

alecsGarza avatar alecsGarza commented on June 5, 2024

For popups in different layers use

map.addLayer(popup);

instead of

map.openPopup(popup);

Example

         featureClick: function(ev,latlng,pos,data) {
           hideTooltip();
          // Stop propagation
          ev.stopPropagation();



            var html = "";

            html += "<br><label>Nombre del Centro</label><p>" + data["nombre_centro"] +"</p>";
            html += "<br><label>Domicilio</label><p>" + data["domicilio"] +"</p>";
            html += "<br><label>Codigo Postal</label><p>" + data["codigo_postal"] +"</p>";
            html += "<br><label>Municipio</label><p>" + data["nom_mun"] +"</p>";
            html += "<br><label>Estado</label><p>" + data["nom_estado"] +"</p>";
            html += "<br><label>Estatus</label><p>" + data["status"] +"</p>";
            html += "<br><label>Dependancia</label><p>" + data["dependencia"] +"</p>";
            html += "<br><label>Programa</label><p>" + data["programa"] +"</p>";
            html += "<br><label>Tipo</label><p>" + data["tipo"] +"</p>";

          popup.setContent(html);
          console.log(html ); 
          // Set latlng
          popup.setLatLng(latlng);

          // Show it!
          //map.openPopup(popup);

          map.addLayer(popup);
        },

from cartodb-leaflet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.