somanchiu / Keyless-Google-Maps-API

Use the Google Maps JavaScript API without API KEY in any domain

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Usage

<script src="https://cdn.jsdelivr.net/gh/somanchiu/Keyless-Google-Maps-API@v6.6/mapsJavaScriptAPI.js"></script>

Example

Demo page: https://somanchiu.github.io/Keyless-Google-Maps-API/demo

<!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://cdn.jsdelivr.net/gh/somanchiu/Keyless-Google-Maps-API@v6.6/mapsJavaScriptAPI.js"
    async defer></script>
  </body>
</html>

Supporting this project

"Buy Me A Coffee"

About

Use the Google Maps JavaScript API without API KEY in any domain


Languages

Language:JavaScript 81.2%Language:HTML 18.8%