JSFiddle - React, Tailwind, and code Playground

playing with google maps v3 events, jQuery, icons from http://google-maps-icons.googlecode.com

HTML

<script src="https://maps.googleapis.com/maps/api/js"></script>

    <div id="map_canvas"></div>

CSS

#map_canvas {
    width: 500px;
    height: 400px;
    background-color: #CCC;
  }

JavaScript

function initialize() {
    var mapCanvas = document.getElementById('map_canvas');
    var mapOptions = {
      center: new google.maps.LatLng(44.5403, -78.5463),
      zoom: 8,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(map_canvas, map_options);
  }

google.maps.event.addDomListener(window, 'load', initialize);