私はこの問題に悩まされています: たとえば、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 ?
//...
}
助けてくれてどうもありがとう!