Create a map test api

Asked

Viewed 58 times

1

I’m trying to create a map api, I tried a google key for testing, and I’m not getting, I wonder if there are any alternatives, being other sites or the same google?

follows the code below:

<!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=AIzaSyDcG1mbGY_EnypGSBBdoG1GdGA74puz0GU&callback=initMap"
    async defer></script>
  </body>
</html>
  • Have you seen the console log?

  • Add your website to the Google Cloud Platform to authorize the use of Googlem maps

  • I’m in localhost, will that be the problem?

  • Sorry to ask, I’m still beginner, but as well the " log on the console"??

  • In Chrome or firefox you press F12 and see the console. What error gives...

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.