Add Google Map Location To Your Site

Getting Started

Since we are dealing with google map, please make sure you have internet connection for this app to work. You may visit the Google Documentation for this app using this link.

The HTML

First, this is our html with the javascript for this app.
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.         <title></title>
  5.         <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  6. </head>
  7. <body>
  8. <div class="container">
  9.         <div class="row">
  10.                 <div class="col-md-8 col-md-offset-2">
  11.                         <h3 class="text-center page-header">Google Map Location</h3>
  12.                         <div id="map" style="height: 400px; width: 100%;"></div>
  13.                 </div>
  14.         </div>
  15. </div>
  16. <script>
  17. function initMap() {
  18.         var location = {lat:9.672948000000002, lng:123.87300219999997};
  19.         var map = new google.maps.Map(document.getElementById('map'), {
  20.         zoom: 4,
  21.         center: location
  22.     });
  23.     var marker = new google.maps.Marker({
  24.         position: location,
  25.         map: map
  26.     });
  27. }
  28. </script>
  29. <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyA1bF3Ry-gVyKmSVse4s1zmfnyd4_9b3F8&callback=initMap"></script>
  30. </body>
  31. </html>

Setting up our Location

As you can see in out script, there's a variable location which contains the latitude and longitude of our location. Edit the value of this variable by your location's latitude and longitude. You can refer to this link for altitude and longitude. Make sure to get the decimal value of your latitude and longitude.

Creating and Enabling our API

Next, we're going to get our own API and change the value of our KEY in our script. API key 1. Visit Google API Console. 2. Create or Select a Project. 3. Click Library and search for Google Maps JavaScript API. Enable this by clicking Enable button. 4. Go back to homepage and click Credentials. 5. On the Create credentials dropdown, select API Key. It will then give you your API Key. 6. Copy this key and change the value of key in our script.

Running the App

Run our application and you should have the google map on your site. Please take note that map load limit is only 25,000 per day if you don't want a billing for this app. That ends this tutorial. Happy Coding :)

Add new comment