Skip to content

Instantly share code, notes, and snippets.

@nealf
Created March 31, 2016 21:23
Show Gist options
  • Save nealf/24def0f14c152f151c1daeef29be0bbd to your computer and use it in GitHub Desktop.
Save nealf/24def0f14c152f151c1daeef29be0bbd to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDLmMSoMXTXPtLhomE1KFHBshie7Y05SUw&callback=initMap"
async defer></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment