我一直在尝试使用地图 v3 获取用户位置,并显示从那里到固定目的地的路径。但是我没有找到获取用户位置的解决方案,我已经阅读了 API 但无法弄清楚任何检查所有示例仍然相同的内容。希望有人可以帮助我谢谢。
问问题
1244 次
3 回答
2
解决方案:
<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});
于 2013-05-17T12:26:41.423 回答
0
google.loader.ClientLocation 仅对用户的位置给出了一个非常近似的估计。
最好的选择是在 HTML5 地理位置不存在或用户不允许的情况下将其用作后备。
if(navigator.geolocation) {
navigator.geolocation.getCurrentPosition(
function(p) {
//get position from p.coords.latitude and p.coords.longitude
},
function() {
//denied or error
//use google.loader.ClientLocation
}
);
} else {
//use google.loader.ClientLocation
}
于 2013-05-17T12:45:08.410 回答
0
jQuery('#map_canvas').gmap({ 'zoom':2,'center':new google.maps.LatLng(39.809734,-98.55562), 'callback': function() {
var self = this;
self.getCurrentPosition(function(position, status) {
if ( status === 'OK' ) {
clientlat = position.coords.latitude;
clientlon = position.coords.longitude;
var clientlatlng = new google.maps.LatLng(clientlat, clientlon);
}
});
}});
于 2013-12-23T07:51:03.437 回答