-1

GoogleMaps 框架的屏幕截图
我已经在我的项目中尝试了用于地图的 Google API。现在我需要获取用户选择的位置的 GPS 坐标,以便将其存储在 Mysql 中。

<!DOCTYPE html>
<html>
<head lang="en">
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=myKeyQ&libraries=places"></script>
<title>Demo Maps</title>
</head>
<body>
<iframe
width="600"
height="450"
frameborder="0" style="border:0"
src="https://www.google.com/maps/embed/v1/place?key=myKey
&q=Space+Needle,Seattle+WA" allowfullscreen>
</iframe>
</body>

</html>
4

1 回答 1

1

在 javascript 中,您可以使用 navigator.geolocation 功能

  <script>
    function getLocation() {
        if (navigator.geolocation) {
            navigator.geolocation.getCurrentPosition(showPosition);
        } else {
            window.alert( "Geolocation is not supported by this browser.");
        }
    }
    function showPosition(position) {
        window.alert( "Latitude: " + position.coords.latitude + 
        "<br>Longitude: " + position.coords.longitude); 
    }

    getLocation();
  </script>
于 2017-03-19T10:43:41.990 回答