如何使用Google Geocode API和PHP获取用户的当前位置

问题描述 投票:4回答:2

我创建了一个应用程序,并且在数据收集过程中,我想在用户使用php访问该应用程序和网站时捕获其当前位置。

理想情况下,我想使其尽可能简单。当前,我具有以下脚本,但其中具有默认地址:

$fullurl = "http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=true";
echo $json;
$string .= file_get_contents($fullurl); // get json content
$json_a = json_decode($string, true); //json decoder

echo $json_a['results'][0]['geometry']['location']['lat']; // get lat for json
echo $json_a['results'][0]['geometry']['location']['lng']; // get ing for json

我希望用户的当前位置代替加利福尼亚州山景城的1600 Amphitheatre Parkway。

非常感谢您的帮助。

javascript php geolocation google-api reverse-geocoding
2个回答
7
投票

由于它在服务器端运行,因此无法使用PHP获取用户位置。您可以通过浏览器使用javascript获取用户位置。

这里是一个例子。在此示例中,我将代码分为两个文件。一种使用PHP(geocoordinates.php)处理和存储信息,另一种使用HTML(HTML)收集地理编码信息(index.html),index.html。

您可以将两个文件合并到index.php中,但是为了简单起见,我将它们分开。

geocoordinates.php

<?php

if(isset($_POST['lat'], $_POST['lng'])) {
    $lat = $_POST['lat'];
    $lng = $_POST['lng'];

    $url = sprintf("https://maps.googleapis.com/maps/api/geocode/json?latlng=%s,%s", $lat, $lng);

    $content = file_get_contents($url); // get json content

    $metadata = json_decode($content, true); //json decoder

    if(count($metadata['results']) > 0) {
        // for format example look at url
        // https://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452
        $result = $metadata['results'][0];

        // save it in db for further use
        echo $result['formatted_address'];

    }
    else {
        // no results returned
    }
}

?>

index.html

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Geocoding Page</title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
  <script>
  function getLocation() {
      if (navigator.geolocation) {
          navigator.geolocation.getCurrentPosition(savePosition, positionError, {timeout:10000});
      } else {
          //Geolocation is not supported by this browser
      }
  }

  // handle the error here
  function positionError(error) {
      var errorCode = error.code;
      var message = error.message;

      alert(message);
  }

  function savePosition(position) {
            $.post("geocoordinates.php", {lat: position.coords.latitude, lng: position.coords.longitude});
  }
  </script>
</head>
<body>
    <button onclick="getLocation();">Get My Location</button>
</body>
</html>

请注意,在此示例中,用户单击“获取我的位置”后,浏览器将提示用户允许地理位置。页面加载后,您也可以调用getLocation函数,但是浏览器将始终请求用户的许可

您可以在http://www.w3schools.com/htmL/html5_geolocation.asp处了解有关地理位置的更多信息>


0
投票

如上所述,PHP是服务器端的,所以我使用文件来获取经度和纬度坐标,然后将其传递到需要的位置。...(不需要API密钥)

© www.soinside.com 2019 - 2024. All rights reserved.