Code Monkey home page Code Monkey logo

Comments (3)

bmeredyk avatar bmeredyk commented on May 19, 2024

Ok, realized I was missing the slot="popup" property of mgl-popup. So with that I'm not getting the funky [x] displaying by each of my markers. And then I realized that the docs said

You can use togglePopup Marker method to toggle visibility of bound Popup

Which I took to mean you should add v-on:click="togglePopup()" to the maker but that doesn't seem to do anything.

from vue-mapbox.

bmeredyk avatar bmeredyk commented on May 19, 2024

OK, figured out that you need to use mgl-popup WITHOUT adding slot="popup" to it and without coordinates either. The example is rather misleading.

<mgl-marker v-for="marker in siteMarkers" 
     :key="marker.id" 
     :coordinates="marker.coords" 
     color="blue"
 >
    <img src="https://www.you.com/images/pin.png" slot="marker" />
        <mgl-popup anchor="bottom-left" >
            <div>
                <strong>{[marker.name]}</strong>
                <address>
                    {[marker.address]}<br />
                     {[marker.city]}, {[marker.state]} {[marker.zip]}
                </address>
            </div>
        </mgl-popup>
</mgl-marker>

Now if I could just figure out how to get click events on markers to trigger other actions

from vue-mapbox.

s0meRandomDev avatar s0meRandomDev commented on May 19, 2024

@bmeredyk , it's more a workaround than a solution for your click event, but if you are still using popups on your marker, they emit an open and a close event, you can listen to these to fire other actions. A click event on the marker itself would be nice though.

from vue-mapbox.

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.