Skip to content

Instantly share code, notes, and snippets.

@wingzRED
Created July 9, 2021 04:33
Show Gist options
  • Save wingzRED/80cbd5177aaca1d4bb567401c97c0b31 to your computer and use it in GitHub Desktop.
Save wingzRED/80cbd5177aaca1d4bb567401c97c0b31 to your computer and use it in GitHub Desktop.
gmaps API key PoC
<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
<style type="text/css">
/* 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>
<script>
let map;
function initMap() {
map = new google.maps.Map(document.getElementById("map"), {
center: { lat: -34.397, lng: 150.644 },
zoom: 8,
});
}
</script>
</head>
<body>
<div id="map"></div>
<!-- Async script executes immediately and must be after any DOM elements used in callback. -->
<script
src="https://maps.googleapis.com/maps/api/js?key=[KEY]&callback=initMap&libraries=&v=weekly"
async
></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment