0
A
回答
1
據gmap geocoding,你可以找到協調的JSON陣列將其直接傳遞到URL,例如
1
使用谷歌地圖的地理編碼: https://developers.google.com/maps/documentation/javascript/examples/geocoding-reverse
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 8,
center: {lat: 40.731, lng: -73.997}
});
var geocoder = new google.maps.Geocoder;
var infowindow = new google.maps.InfoWindow;
document.getElementById('submit').addEventListener('click', function() {
geocodeLatLng(geocoder, map, infowindow);
});
}
function geocodeLatLng(geocoder, map, infowindow) {
var input = document.getElementById('latlng').value;
var latlngStr = input.split(',', 2);
var latlng = {lat: parseFloat(latlngStr[0]), lng: parseFloat(latlngStr[1])};
geocoder.geocode({'location': latlng}, function(results, status) {
if (status === 'OK') {
if (results[0]) {
map.setZoom(11);
var marker = new google.maps.Marker({
position: latlng,
map: map
});
infowindow.setContent(results[0].formatted_address);
infowindow.open(map, marker);
} else {
window.alert('No results found');
}
} else {
window.alert('Geocoder failed due to: ' + status);
}
});
}
相關問題
- 1. 獲取當前位置的Google地圖
- 2. 獲取谷歌地圖當前位置
- 3. 在地圖上獲取當前位置
- 4. blackberry gps獲取當前位置地址?
- 5. 當前位置詳細Google地圖
- 6. Android Studio - 當前位置 - Google地圖
- 7. 獲取當前位置的Google靜態地圖?
- 8. android google地圖顯示當前位置;地圖不顯示
- 9. 當前位置給定時,獲取最近地點的地圖
- 10. 如何獲取Google地圖鏈接從當前位置?
- 11. 如何在Google地圖上獲取當前位置android
- 12. Android Google地圖獲取當前位置不起作用
- 13. 在Google地圖上獲取當前位置
- 14. 無法在Google地圖片段中獲取當前位置
- 15. 無法獲取當前位置Google地圖Android
- 16. 無法在Google地圖中獲取當前位置
- 17. Arcgis地圖當前位置
- 18. 當前位置與地圖
- 19. Google地圖獲取當前樓層
- 20. 獲取當前位置..在地圖上罰款..但沒有得到地址
- 21. iOS:從沒有地圖的當前位置獲取地理位置的角度
- 22. 如何獲取並設置Google地圖的地理位置?
- 23. 谷歌地圖獲取當前地圖的地方列表
- 24. 獲取地址的位置
- 25. 谷歌地圖當前位置繪圖
- 26. 獲取地圖或位置Android中的地址
- 27. 獲取地圖位置Python
- 28. Google地球插件API - 如何獲取當前地圖比例?
- 29. 從Google地圖中的地理位置獲取郵政編碼
- 30. 在google地圖中獲取最近的地鐵站位置android
感謝您的回覆,但那不是我所需要的。地圖將被集成到一個頁面中,並且我需要動態顯示地圖中心的街道地址,從而可以移動地圖。所以url需要保持不變,但地址應該取決於地圖視圖。 –
據我所知,你想檢索地圖中心的地址,對吧?所以它可以通過googlemap反向地理編碼完成,請參閱 https://developers.google.com/maps/documentation/javascript/examples/geocoding-reverse?hl=zh-CN 如果要動態檢索地址,可以將拖放監聽器設置爲您的地圖,獲取中心位置,並應用反向地理編碼來獲取地址。 – vtproduction