This repository was archived by the owner on Nov 30, 2018. It is now read-only.
This repository was archived by the owner on Nov 30, 2018. It is now read-only.
InfoWindow Events Attribute Missing #1584
Open
Description
I have been trying to access the google map events e.g. "domready", for when user clicks a marker to open the infoWindow. But nothing seems to work. domready event is never caught or fired. I want to customize some of the things in google maps (using angular-google-maps).
How can i listen to Google Map API events? Its not specified anywhere in the documentation.
I have used something like below, but that doesn't work:
infoWindow = new google.maps.InfoWindow();
google.maps.event.addListener(infoWindow, 'domready', function() {
// whatever you want to do once the DOM is ready
});