如何使用Google Maps API v3获取客户位置?

时间:2010-10-15 08:52:01

标签: javascript google-maps

如何使用Google Maps API v3获取客户位置?我尝试了以下代码但仍然得到“google.loader.ClientLocation为null或不是对象”错误。任何想法为什么??

if (google.loader.ClientLocation) {
            alert(google.loader.ClientLocation.latitude+" "+google.loader.ClientLocation.longitude);
        }

谢谢

5 个答案:

答案 0 :(得分:31)

试试这个:)

    <script type="text/javascript" src="http://www.google.com/jsapi"></script>
    <script type="text/javascript">
    function initialize() {
        var loc = {};
        var geocoder = new google.maps.Geocoder();
        if(google.loader.ClientLocation) {
            loc.lat = google.loader.ClientLocation.latitude;
            loc.lng = google.loader.ClientLocation.longitude;

            var latlng = new google.maps.LatLng(loc.lat, loc.lng);
            geocoder.geocode({'latLng': latlng}, function(results, status) {
                if(status == google.maps.GeocoderStatus.OK) {
                    alert(results[0]['formatted_address']);
                };
            });
        }
    }

    google.load("maps", "3.x", {other_params: "sensor=false", callback:initialize});

    </script>

答案 1 :(得分:10)

有点晚了,但我得到了类似的东西,我正在忙着构建,这里是获取当前位置的代码 - 请务必使用本地服务器进行测试。

包括CDN的相关脚本:

    <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&signed_in=true&callback=initMap">

HTML

<div id="map"></div>

CSS

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
#map {
    height: 100%;
}

JS

var map = new google.maps.Map(document.getElementById('map'), {
    center: {lat: -34.397, lng: 150.644},
    zoom: 6
});
var infoWindow = new google.maps.InfoWindow({map: map});

// 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.');
        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.');
}

样本

https://jsfiddle.net/ToreanJoel/4ythpy02/

答案 2 :(得分:6)

我无法使用上述代码。

谷歌在这里做了很好的解释: http://code.google.com/apis/maps/documentation/javascript/basics.html#DetectingUserLocation

他们首先使用W3C Geolocation方法,然后为旧浏览器提供Google.gears后备方法。

示例如下:

http://code.google.com/apis/maps/documentation/javascript/examples/map-geolocation.html

答案 3 :(得分:3)

无需自己实施。我建议您使用google-maps-utility-library-v3中的geolocationmarker

答案 4 :(得分:1)

现在看来你现在不需要反转地理编码,现在直接从ClientLocation获取地址:

google.loader.ClientLocation.address.city