• i have a big amount of data(markers) and i’m having problem to find how to mouse hover ( i need to show the title when mouse over).
    Almost of tutorials show how to do it in plugins or regular google maps, but i can’t put MyMaps url as a map in them.
    So if you guys could help me to show one plugin that can do that,
    or show me how to make it work putting some code somewhere would be great.
    This is the website page:

    https://cglab.unifei.edu.br/mapadigital-itajuba

    I’m using “Embed google Map” plugin.
    Here’s the code im using :

    {google_map}https://www.google.com/maps/d/embed?mid=zKqyCKIqxGhQ.khG-XOn3c7uQ|width:800|height:600|link:yes|zoom:<span style=”color: #444444;”>1</span><span style=”color: #444444;”>7</span><span style=”color: #444444;”>|link_label:Abrir Mapa{/google_map}

    I’m new at making website, and programming so i really need help.
    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter claudio.m

    (@claudiom-1)

    anyone know what where or how i can change/modify my plugin or do some codding somewhere?

    In google v3 API code will be like this

    google.maps.event.addListener(marker, ‘mouseover’, function() {
    infowindow.open(map, this);
    });

    // assuming you also want to hide the infowindow when user mouses-out
    google.maps.event.addListener(marker, ‘mouseout’, function() {
    infowindow.close();
    });

    Thread Starter claudio.m

    (@claudiom-1)

    any help?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Need Help to Mouse Hover on Google Maps by MyMaps (lot of markers)’ is closed to new replies.