何を後にしていることはHTML5ジオロケーション
Google Maps Geolocation - Google Developers
しかし、ここでは基本的にあなたが自分でGPSを有効にするには、ユーザーからのアクセスを要求する必要がありますJSFiddle
でいるようですねデバイス。
その後、HTML5 Geolocation Navigatorを使用して、デバイスを介してユーザーの位置を取得します。
// 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());
}