Map Prototype
Nope
by Pete Fecteau
HTML
<html>
<head>
<title>Map Prototype</title>
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
</head>
<body>
<div id="map"></div>
<script
...
SCSS
#map{height:100%}
html,body{height:100%;margin:0;padding:0}
JavaScript
let map;
function initMap() {
map = new google.maps.Map(document.getElementById("map"), {
center: { lat: 41.51587, lng: -90.43282 },
zoom: 16,
});
}