• Resolved claudio.m

    (@claudiom-1)


    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).

    http://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

    https://wordpress.org/plugins/embed-google-map/

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();
    });

    Plugin Author petkivim

    (@petkivim)

    Sorry for slow reply. I’ve been on vacation lately.

    The correct code for adding the map is:

    {google_map}https://www.google.com/maps/d/embed?mid=zKqyCKIqxGhQ.khG-XOn3c7uQ|width:800|height:600|link:yes|zoom:7|link_label:Abrir Mapa{/google_map}

    Unfortunately this plugin doesn’t support mouse over for individual markers as it does not use Google v3 API.

    Best regards,
    Petteri

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Mouse Over’ is closed to new replies.