1

Is there any way to perform marker click event on Google Map automatically.

Hope to hear from your answer.

Thank you.

Regards,

Parmanand Soni

Parmanand
  • 355
  • 2
  • 6
  • 15
  • Duplicate of [How to trigger the onclick event of a marker on a Google Maps V3?](http://stackoverflow.com/questions/2730929/how-to-trigger-the-onclick-event-of-a-marker-on-a-google-maps-v3/2731781#2731781) – Anto Jurković Jan 30 '14 at 12:00

1 Answers1

1

Use google.maps.event.trigger() method. See google docs events. As an instance object you have to use your marker. For example:

google.maps.event.trigger(marker, 'click');
Anto Jurković
  • 11,188
  • 2
  • 29
  • 42