JSFiddle - React, Tailwind, and code Playground

by amenadiel

HTML

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
 <div class="map" id="map"></div>

CSS

#map {
  width: 100%;
  height: 500%;

}

JavaScript

new google.maps.Map(document.getElementById("map"), {
    zoom: 8,
    center: new google.maps.LatLng(28, -41),
    mapTypeId: "roadmap"
});