Google Charts - Google Charts tutorial - Map using Latitude/Longitude - chart js - google graphs - google charts examples



How to draw a Map using Latitude/Longitude?

  • Below is an example of a map using latitude and longitude.
  • In Google Charts Configuration Syntax chapter, we have already seen the configuration used for drawing this chart. Now let's see the complete example.

Configurations:

  • We've used Map class to show map based chart.

Syntax:

//Map chart
var chart = new google.visualization.Map(document.getElementById('container'));
Clicking "Copy Code" button to copy the code. From - google charts tutorial - team

Example:

googlecharts-map-latitude.html

 Tryit<html>
<head>
<title>Google Charts</title>
   <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
   <script type="text/javascript" src="https://www.google.com/jsapi"></script>
   <script type="text/javascript">
     google.charts.load('current', {packages: ['map']});     
   </script>
</head>
<body>
<div id="container" style="width: 550px; height: 400px; margin: 0 auto"></div>
<script language="JavaScript">
function drawChart() {
   // Define the chart to be drawn.
    var data = google.visualization.arrayToDataTable([
       ['Lat', 'Long', 'Name'],
       [37.4232, -122.0853, 'Work'],
       [37.4289, -122.1697, 'University'],
       [37.6153, -122.3900, 'Airport'],
       [37.4422, -122.1731, 'Shopping']
   ]);
  
   // Set chart options
   var options = {
      showTip: true    
   };				

   // Instantiate and draw the chart.
   var chart = new google.visualization.Map(document.getElementById('container'));
   chart.draw(data, options);
}
google.charts.setOnLoadCallback(drawChart);
</script>
</body>
</html>
Clicking "Copy Code" button to copy the code. From - google charts tutorial - team

Output:


Related Searches to Google Charts - Map using Latitude/Longitude