Guest User

Untitled

a guest
Jan 19th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. google.maps.event.addListener(marker, 'click', function() {
  2. infowindow.open(map1, marker);
  3. });
  4.  
  5. infoWindow = new google.maps.InfoWindow; //static infoWindow for all your markers
  6. google.maps.event.addDomListener(window, 'load', function() {
  7. //create your markers here
  8. google.maps.event.addListener(marker, 'click', function() {
  9. infoWindow.open(map1, marker); //take care with case-sensitiveness
  10. });
  11. });
Add Comment
Please, Sign In to add comment