web-dev-qa-db-ja.com

Google Maps API v3を使用してクライアントの場所を取得する方法は?

Google Maps API v3を使用してクライアントの場所を取得するにはどうすればよいですか?次のコードを試しましたが、「google.loader.ClientLocationがnullまたはオブジェクトではありません」というエラーが引き続き発生しました。なぜアイデア??

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

ありがとうございました

17
manraj82

これを試して :)

    <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>
32
tomodian

少し遅れましたが、私が構築に忙しいのと同じようなものを手に入れました。ここに現在の場所を取得するコードがあります-テストには必ずローカルサーバーを使用してください。

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/

10
TrojanMorse

上記のコードを動作させることができませんでした。

Googleはここでも素晴らしい説明をしています: 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

6
sren

独自の実装を行う必要はありません。 google-maps-utility-library-vgeolocationmarkerを使用することをお勧めします。

3
jmagnusson

ジオコードをリバースする必要がなくなり、ClientLocationから直接住所を取得するようになりました。

google.loader.ClientLocation.address.city
1
Kris