JSFiddle - React, Tailwind, and code Playground
by andypotanin
HTML
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCV-VTFfPOXnQJfWk7KIEDspLpIDmlrTiA&callback=initMap"></script>
<div id="map"></div>
CSS
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
JavaScript
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
center: {lat: 36.964, lng: -122.015},
zoom: 18,
mapTypeId: google.maps.MapTypeId.SATELLITE
});
map.setTilt(45);
}