如何获得谷歌地图中的搜索纬度和经度

时间:2013-11-28 08:33:59

标签: asp.net google-maps

我想在我的页面上显示纬度和经度,就像我们在谷歌地图中搜索一样,例如,如果我进入Comfort Inn Sunset,那么它会在文本框中显示纬度和经度。

所以请尽快帮助我。

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

请参阅以下链接。

http://jsfiddle.net/nB2ej/

geocoder.geocode({ 'address': addresscity }, function (results, status) {
                if (status == google.maps.GeocoderStatus.OK) {
                    latitude = results[0].geometry.location.lat();
                    longitude = results[0].geometry.location.lng();
                    document.getElementById("lat").value=   latitude;
                   document.getElementById("lon").value=   longitude; 
                 var myLatlng = new google.maps.LatLng(latitude, longitude);
                    var mapOptions = {
                 center: new google.maps.LatLng(latitude, longitude),
                  zoom: 8,
                 mapTypeId: google.maps.MapTypeId.ROADMAP

             };
});