我目前使用谷歌地圖API來在地圖上的地理位置地址,並返回該街道的地址。如何從Google地圖地理編碼返回地址類型?
目前,我用下面的代碼返回地址:
function codeLatLng(markerPos) {
geocoder.geocode({'latLng': markerPos}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
if (results[1]) {
//Set markerAddress variable
var markerAddress = results[0].formatted_address;
alert(markerAddress);
...
但如果我不想使用地址元件類型返回格式的地址,但更詳細的版本,我怎麼能返回某個地址值如:http://code.google.com/apis/maps/documentation/geocoding/#Types
幫助讚賞。
嗯......這提醒爲「未定義」任何其他的想法 – hairynuggets