Created
May 5, 2015 05:55
-
-
Save rossigee/5c8d0c4256847a74b753 to your computer and use it in GitHub Desktop.
Google Maps marker bug demonstration // source http://jsbin.com/vehaju
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Google Maps marker bug demonstration</title> | |
<meta charset="utf-8"> | |
<style> | |
html, body, #map-canvas { | |
height: 100%; | |
margin: 0px; | |
padding: 0px | |
} | |
</style> | |
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script> | |
<script> | |
var map; | |
function initialize() { | |
var mapOptions = { | |
zoom: 14, | |
center: new google.maps.LatLng(51.508742, -0.109584) | |
}; | |
map = new google.maps.Map(document.getElementById('map-canvas'), | |
mapOptions); | |
google.maps.event.addListener(map, 'click', function() { | |
window.alert("Clicked"); | |
}); | |
} | |
google.maps.event.addDomListener(window, 'load', initialize); | |
</script> | |
</head> | |
<body> | |
<div id="map-canvas"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment