Google Maps Geolocation不征求许可

时间:2018-10-05 14:17:53

标签: php html api google-api google-geolocation

我正在尝试在以下页面中使用Google Maps API: https://developers.google.com/maps/documentation/javascript/geolocation

我要做的就是复制该页面上的代码并将其粘贴到我网站上的测试页面上。 http://kwt-events-com.stackstaging.com/content/api/maps.php

我确实有一个API密钥。我用过它,并且页面在google map上加载很棒。

问题是它无法检测到显示此错误的位置: “错误:地理位置服务失败”

我尝试过的事情: 是为了允许在浏览器和计算机中进行位置检测。 我在同一台机器“ macos”上尝试了不同的浏览器。 我在另一台计算机“另一台PC和另一台Mac”上尝试过。 我在电话“ ios”上尝试过。

相同错误

我知道我无法发布所有代码,但是病了,所以你们可以帮助我

<!DOCTYPE html>
<html>
<head>
<title>Geolocation</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<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>
  // Note: This example requires that you consent to location sharing when
  // prompted by your browser. If you see the error "The Geolocation service
  // failed.", it means you probably did not give permission for the browser to
  // locate you.
  var map, infoWindow;
  function initMap() {
    map = new google.maps.Map(document.getElementById('map'), {
      center: {lat: -34.397, lng: 150.644},
      zoom: 6
    });
    infoWindow = new google.maps.InfoWindow;

    // Try HTML5 geolocation.
    if (navigator.geolocation) {
      navigator.geolocation.getCurrentPosition(function(position) {
        var pos = {
          lat: position.coords.latitude,
          lng: position.coords.longitude
        };

        infoWindow.setPosition(pos);
        infoWindow.setContent('Location found.');
        infoWindow.open(map);
        map.setCenter(pos);
      }, function() {
        handleLocationError(true, infoWindow, map.getCenter());
      });
    } else {
      // Browser doesn't support Geolocation
      handleLocationError(false, infoWindow, map.getCenter());
    }
  }

  function handleLocationError(browserHasGeolocation, infoWindow, pos) {
    infoWindow.setPosition(pos);
    infoWindow.setContent(browserHasGeolocation ?
                          'Error: The Geolocation service failed.' :
                          'Error: Your browser doesn\'t support geolocation.');
    infoWindow.open(map);
  }
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=IHAD-MY-API-KEY-HERE&callback=initMap">
</script>

2 个答案:

答案 0 :(得分:3)

您的网页是通过HTTP而不是HTTPS进行投放的,并且只有从Chrome 50,Safari 10和Firefox 55开始就可以安全地提供网页的情况下,地理位置定位才可用。

答案 1 :(得分:0)

首先,您的页面应为https。 Google地理位置只能在https中使用。

您也可以使用此简单代码

    function getLocation() {
     if (navigator.geolocation) {
     navigator.geolocation.getCurrentPosition(showPosition);
     } else { 
      x.innerHTML = "Geolocation is not supported by this browser.";
     }
   }
 getLocation();

   function showPosition(position) { 
   var latitude = position.coords.latitude; 
   var longitude = position.coords.longitude; 
   console.log(latitude,longitude);
  }