Skip to content

Instantly share code, notes, and snippets.

@kumaraksi
Created May 15, 2019 13:29
Show Gist options
  • Save kumaraksi/6a1dbd569e817109d2a20e7e9ce59d9a to your computer and use it in GitHub Desktop.
Save kumaraksi/6a1dbd569e817109d2a20e7e9ce59d9a to your computer and use it in GitHub Desktop.
google map callback approach
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</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=YOUR_API_KEY&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