Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. var map;
  2.  
  3. function initMap() {
  4. map = new google.maps.Map(document.getElementById("map"), {
  5. zoom: 5,
  6. center: new google.maps.LatLng(35.713819, 139.7598354)
  7. });
  8. infowindow = new google.maps.InfoWindow({ content: 'Test' });
  9. google.maps.event.addListener(map, 'click', function() {
  10. infowindow.close(map);
  11. });
  12. refreshMarkers();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement