我被这个问题困住了:我想检索由地理位置定义的位置,以便在我的 calcRoute 函数中使用它作为起点,例如,这里是代码:
function calcRoute(){
var pos;
navigator.geolocation.getCurrentPosition
(
function(position)
{
pos = new google.maps.LatLng(position.coords.latitude,position.coords.longitude);
}
);
var start = pos;
alert(start); // pb here : start is undefined, how could I get the pos value ?
//...
}
非常感谢你的帮助!