0
こんにちは私は逆ジオコーディングのために以下のコードを使用していますが、私は正確な結果を得ていません、私はほぼ1.2kmの違いを得ています、以下は私のコードです。angularJSの逆ジオコーディング
$scope.getloc=function(){
var latlng = new google.maps.LatLng("47.1464936", "-122.443986");
var geocoder = geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'latLng': latlng }, function (results, status) {
if (status == google.maps.GeocoderStatus.OK) {
if (results[1]) {
$scope.Formatedaddress=results[1].formatted_address
console.log($scope.Formatedaddress)
}
}
});
}
上記与えられた座標や場所太平洋ルーテル大学、 しかし、私はパークランド、WA、USAを取得していた結果として
場所は静的ではなく、イベントごとに変更されます。 – Sudhir