how to get Latitude and Longitude like search in google map

0 views
Skip to first unread message

VIPUL PARMAR via StackOverflow

unread,
Nov 28, 2013, 3:37:26 AM11/28/13
to google-appengin...@googlegroups.com

I want to display Latitude and Longitude on my page like we search in google map,for example if i enter Comfort Inn Sunset then it show the Latitude and Longitude in textbox.

so please help me as soon as possible.



Please DO NOT REPLY directly to this email but go to StackOverflow:
http://stackoverflow.com/questions/20261155/how-to-get-latitude-and-longitude-like-search-in-google-map

user3004743 via StackOverflow

unread,
Nov 28, 2013, 3:52:41 AM11/28/13
to google-appengin...@googlegroups.com

RGS via StackOverflow

unread,
Nov 28, 2013, 4:22:49 AM11/28/13
to google-appengin...@googlegroups.com

Please refer the link below.

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

             };
});


Please DO NOT REPLY directly to this email but go to StackOverflow:
http://stackoverflow.com/questions/20261155/how-to-get-latitude-and-longitude-like-search-in-google-map/20261887#20261887
Reply all
Reply to author
Forward
0 new messages