JSFiddle - React, Tailwind, and code Playground

by JohannesJo

HTML

<!DOCTYPE html>
<html>
  <head>
    <title>Simple Markers</title>
    <script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
    <!-- jsFiddle will insert css and js -->
  </head>
  <body>
    <div id="map"></div>

    <!-- Async script executes immediately and must be after any DOM elements used in callback. -->
    <script
      src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB41DRUbKWJHPxaFjMAwdrzWzbVKartNGg&callback=initMap&v=weekly&channel=2"
      async
    ></script>
  </body>
</html>

CSS

/* Always set the map height explicitly to define the size of the div
       * element that contains the map. */
#map {
  height: 100%;
}

/* Optional: Makes the sample page fill the window. */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

JavaScript

function initMap() {
  const myLatLng = { lat: 6.7675315835931915, lng: -136.70044541358945 };
    const myLatLng2 = { lat:-47.920516030453925, lng: 115.63353896141054 };

  const map = new google.maps.Map(document.getElementById("map"), {
    zoom: 2,
    center: myLatLng,
  });

  new google.maps.Marker({
    position: myLatLng,
    map,
    title: "Hello World!",
  });
  
  setTimeout(()=>{
    new google.maps.Marker({
    position: myLatLng2,
    map,
    title: "Hello World!",
  });
  }, 5000)
}