JSFiddle - React, Tailwind, and code Playground

by mowglisanu

HTML

<div id=mapx></div>
<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>

CSS

*{width:100%;height:100%}

JavaScript

var position = new google.maps.LatLng(10.651523,-61.42021);
                var mapOptions = {
                  center: position,
                  zoom: 17,
                  mapTypeId: google.maps.MapTypeId.ROADMAP,
                  mapTypeControl:false
                };
                var map = new google.maps.Map(document.getElementById("mapx"),
                    mapOptions);