Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <title>Simple Map</title>
    <meta name="viewport" content="initial-scale=1.0">
    <meta charset="utf-8">
    <style>
    </style>
  </head>
  <body>
    <div id="map"></div>
    <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDRc9hEV_BnwCBfGlhlmGDJY0fNYf6tBnQ&callback=initMap"
    async defer></script>
  </body>
</html>
 
/* 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;
}
ul {
  list-style-type: none;
  padding-left: 5px;
}
li {
  margin: 4px;
  padding: 2px;
  cursor: pointer;
  font-size: 15px;
  color: blue;
  text-decoration: underline;
}
li:hover {
  text-decoration: none;
  text-shadow: 1px 1px 1px #555;
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
ivdekovpro
0viewers