Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8465949
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T15:11:55+00:00 2026-06-10T15:11:55+00:00

I am trying to call mouseover event on markers when a user hovers over

  • 0

I am trying to call mouseover event on markers when a user hovers over address, but that doesn’t seem to work. Open this page

http://tinyurl.com/bp94qdy

type subway and click go. This is link in the address

 <a  onmouseover="javascript:google.maps.event.trigger(markersArray['+i+'],onmouseover);"

I am also trying to zoom the map on initializing so that all markers fit in it, but that gives me an undefined GLatLngBounds error. The code used is
function calculateCenter() {

  /* var latlngbounds = new GLatLngBounds();
  for (var i = 0; i < latlng.length; i++)
   {
       latlngbounds.extend(latlng[i]);
    }
    map.setCenter(latlngbounds.getCenter(), map.getBoundsZoomLevel(latlngbounds));*/
    center = map.getCenter();
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T15:11:56+00:00Added an answer on June 10, 2026 at 3:11 pm

    Look at the syntax for google.maps.event.trigger
    This will not work:

    <a onmouseover="javascript:google.maps.event.trigger(markersArray['+i+'],onmouseover);" ...
    

    because the event name should be a string, so:

    <a  onmouseover="javascript:google.maps.event.trigger(markersArray['+i+'],'onmouseover');" ...
    

    or even better, use DHTML:

    var div = document.createElement('DIV');
    div.onmouseover = function(i){
    google.maps.event.trigger(markersArray[i],'mouseover');
    }
    div.innerHTML = contentString;
    var listContainer = document.getElementById("listingAddress");
    listContainer.appendChild(div);
    

    with quotation marks around the event name.
    and there is another error:
    var markerBounds = new GLatLngBounds();
    is API V2 syntax. In the V3 API it is

    var markerBounds = new google.maps.LatLngBounds();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When a user hovers over an event in the FullCalendar, I execute this code
Im trying to call a method that will add or subtract 1 from a
I'm trying to call a movieclip called mcMain that's already on the stage. I'm
I'm trying to call a WCF service cross-domain using javascript, over http. I've added
I'm trying to develop a plugin that shows website screenshot, when a user clicks
I am trying to call a command when my mouse is over a toggle
I am trying to make my ASP:Listbox throw an event in javascript that will
I'm trying to write a very simple plugin that on anchor mouseover increases the
I have been trying to call filter css method from jquery for IE, but
I have been trying to call filter css method from jquery for IE, but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.