JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<div id="map"></div>

JavaScript

jQuery(function ( $ ){
    console.log('google', google);
    inititalize();
});

function initialize() {
    var latlng = new google.maps.LatLng(40.73099872434727, -73.9984130859375);
    var settings = {
        zoom: 13,
        center: latlng,
        mapTypeControl: false,
        mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
        navigationControl: false,
        navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
        mapTypeId: google.maps.MapTypeId.SATELLITE
    };
    var map = new google.maps.Map(document.getElementById("map"), settings);
}