新しいgoogle.maps.LatLng(緯度、経度)に送信する方法を、関数から緯度経度を取得し、私はアドレスから緯度経度を取得するには、このスクリプトを使用していたJavaScript
var latitude="";
var longitude ="";
function codeAddress(address) {
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'address': address}, function(results, status) {
if (status == 'OK') {
latitude = results[0].geometry.location.lat();
longitude = results[0].geometry.location.lng();
// myAfterFunction();
// console.log(this.latitude);
} else {
alert('Geocode was not successful for the following reason: ' + status);
}
});
}
var center = new google.maps.LatLng(latitude,longitude);
私の問題は、私ですカントは、この関数から緯度と経度の値を取得し、私は別の関数
function myAfterFunction(){
console.log(latitude);
}
ので、私の質問は、私の関数から緯度と経度を取得する方法である
を使用してみましたか? (私が間違っている可能性が、あなたのコードが問題で何を明確に示す必要があります)あなたのタイトルに基づいて
エラーは何ですか? –
私はconsole.log(緯度)を書く。 console.log(経度);関数の外に、それは未定義未定義 –