Google maps API

0

How do I make a custom map style like this:

link

Using the google API, I do not know where to start.

    
asked by anonymous 23.06.2017 / 16:33

1 answer

1

Igor, a good search on Developers on google can help you a lot, they have several examples and a very good documentation, for your purpose have this example here

Follows:

<!DOCTYPE html>
<html>
  <head>
    <title>Simple Map</title>
    <meta name="viewport" content="initial-scale=1.0">
    <meta charset="utf-8">
    <style>
      /* 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;
      }
    </style>
  </head>
  <body>
    <div id="map"></div>
    <script>
      var map;
      function initMap() {
        map = new google.maps.Map(document.getElementById('map'), {
          center: {lat: -34.397, lng: 150.644},
          zoom: 8
        });
      }
    </script>
    <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap"asyncdefer></script></body></html>

Rememberingthatit'simportanttohave your own Key API

    
23.06.2017 / 16:39