Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
    <title>Google Maps API in Bootstrap</title>
  </head>
  <body>
  <h3>My Google Maps Demo</h3>
    <div class="row">
      <div class="col-md-12 text-center with-border">
        <h3>Google Maps</h3>
      </div>    
    </div>
    <div class="row body">
      <div class="col-sm-6">
        <div id="map"></div>
      </div>
      <div class="col-sm-6 text-center">
        <h4>Contact Information</h4>
        <ul>
          <li>ABC</li>
        </ul>
      </div>
    </div>
  <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCKQX3cyZ7pVKmBwE8wiowivW9qH62AVk8&callback=initMap"></script>
  </body>
</html>
 
function initMap() {
    var uluru = { lat: 51.957244, lng: 4.570751 };
    var map = new google.maps.Map(document.getElementById('map'), {
        zoom: 15,
        center: uluru
    });
    var marker = new google.maps.Marker({
        position: uluru,
        map: map
    });
}
Output

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

Dismiss x
public
Bin info
solomonbeldapro
0viewers