htmlページに表示する都市名を返すにはどうしたらいいですか?関数を返すにはどうすればいいですか
My機能
function getCity(latitude, longitude){
var geocoder;
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(latitude, longitude);
geocoder.geocode(
{'latLng': latlng},
function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
if (results[0]) {
var add= results[0].formatted_address ;
var value=add.split(",");
count=value.length;
country=value[count-1];
state=value[count-2];
city=value[count-3];
alert("city name is: " + city);
return city;
}
}
}
);
アラートが正常に動作しています。 HTMLで
私はそのように、この関数を呼び出した:
<script> getCity("<%= map.latitude %>","<%= map.longitude %>")</script>
事前にTKS。
「geocode」は非同期呼び出しです。 – Marty