HTML5ジオロケーションを使用して都市、地域などのユーザーの位置情報を取得したい、私は以下の記事を試しましたが、それで緯度と経度を取得し、都市と地域の情報を取得したい http://www.dotnetcurry.com /ShowArticle.aspx?ID=782
質問する
1811 次
1 に答える
0
ユーザーの場所がわかったら、リバース ジオコーディングを実行して、都市などの場所に関する情報を取得する必要があります。
Google マップのリバース ジオコーディング API をご覧ください。
navigator.geolocation.getCurrentPosition(function(pos){
var latlng = new google.maps.LatLng(pos.coords.latitude, pos.coords.longitude);
geocoder.geocode({'latLng': latlng}, function(results, status) {
console.log(results);
// Analyze results and find the info you need.
});
});
Google マップを使用しないジオコーディングについては、Google を使用せずにジオコーディングをリバースする方法をご覧ください。
于 2013-02-11T07:11:44.603 に答える