Open In App

Google Maps | Introduction

Google Maps is a web mapping service that is free by Google. This service provides various types of geographical information. With the help of google map, searching places and direction can be done. Also, we can get the traffic information of a specific area or view street-level images of cities.

Google Maps has a JavaScript API. This API is used to customize the map which displays the information.



Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        Google Maps | Introduction
    </title>
      
    <!-- Add Google map API source -->
    <script src=
    </script>
  
    <script>
        function GFG() {
  
            var CustomOp = {
                center: new google.maps.LatLng(
                        28.502212, 77.405603),
                zoom: 17,
                mapTypeId: google.maps.MapTypeId.ROADMAP
            };
  
            // Map object
            var map = new google.maps.Map(
                document.getElementById("DivID"),
                CustomOp
            );
        }
    </script>
</head>
  
<!-- Function that execute when page load -->
<body onload="GFG()">
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
          
        <h3>Google Maps</h3>
          
        <!-- Basic Container -->
        <div id="DivID" 
            style="width:400px; height:300px;">
        </div>
    </center>
</body>
  
</html>

Output:

Exaplaination:




Article Tags :