誰かが私のウェブ上に来て、ニューヨークの都市の緯度と経度を見つけるためにgoogle APIを使って緯度と経度を取得するにはどうすればこのクエリをコーディングするのか教えてください。Google Apiで経度と緯度を検索するには?
-3
A
答えて
0
私はあなたがGoogleのジオコーディングApiを探していると思います。
あなたはこのような何かを要求を送信する:あなたは
「の結果 - 幾何学 - 場所 - 緯度/経度」の経度緯度とを得ることができるところに大きなJSONオブジェクトが返され、その後 https://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&key=YOUR_API_KEY
{
"results" : [
{
"geometry" : {
"location" : {
"lat" : 37.4224764,
"lng" : -122.0842499
},
...
...
は、いくつかのより多くの情報https://developers.google.com/maps/documentation/geocoding/intro
0
最初のロードのために、ここで見てくださいライブラリ:
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?
key=YOUR_API_KEY&libraries=places">
</script>
次いで、特定の場所の詳細を見つける:
<script>
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -33.866, lng: 151.196},
zoom: 15
});
var infowindow = new google.maps.InfoWindow();
var service = new google.maps.places.PlacesService(map);
service.getDetails({
placeId: 'ChIJN1t_tDeuEmsRUsoyG83frY4'
}, function(place, status) {
if (status === google.maps.places.PlacesServiceStatus.OK) {
var marker = new google.maps.Marker({
map: map,
position: place.geometry.location
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.setContent('<div><strong>' + place.name + '</strong><br>' +
'Place ID: ' + place.place_id + '<br>' +
place.formatted_address + '</div>');
infowindow.open(map, this);
});
}
});
}
は、所望の位置の緯度と経度を置き換えます。詳細については、
は参照:
https://developers.google.com/maps/documentation/javascript/places#place_details
およびたとえば:
https://developers.google.com/maps/documentation/javascript/examples/place-details
関連する問題
- 1. Googleマップ緯度/経度検索スクリプト
- 2. オートコンプリート検索で緯度と経度を取得する方法google api
- 3. 緯度と経度の検索0,0
- 4. 緯度と経度の検索方法
- 5. SQL検索 "near"経度と緯度
- 6. Googleプレイスからの緯度と経度の取得検索ボックス
- 7. ジオコーダGoogleマップの経度と緯度の検索
- 8. jVector Map Pluginで緯度と経度を検索する方法
- 9. Googleのストリートビューから緯度/経度/緯度/緯度/経度を取得する
- 10. 緯度、経度、住所検索
- 11. 経度と緯度をgoogleの方向に渡すapi
- 12. 緯度/経度で標高データを検索する方法
- 13. 住所から緯度と経度を検索する
- 14. Googleマップから緯度と経度を取得するapi
- 15. Google GeoCoding APIから緯度と経度を取得する
- 16. 検索ボックスから緯度と経度を取得
- 17. PostgreSQLで緯度と経度から都市名を検索するには?
- 18. 緯度経度APIの
- 19. のGoogle APIのルート:緯度/経度と宛先:placeIdは
- 20. Strava API - 正確な経度と緯度
- 21. スタートGoogleマップの経度と緯度
- 22. GoogleマップのジオコーディングAPiが緯度と経度を返さない
- 23. Googleマップの緯度と経度を変更するには
- 24. 緯度&経度
- 25. 緯度と経度の変更google maps api
- 26. 緯度と経度の誤差 - Google Maps API JS 3.0
- 27. Googleマップapi v2住所問題の経度と緯度
- 28. Google Maps API - 緯度/経度の代わりにch1903を使用
- 29. 緯度と経度は、R
- 30. facebookイベントでグラフapi経由で緯度と経度を入力