fd6093 Posted July 29, 2011 Posted July 29, 2011 Hi all What Param list form google map demo UniLabel1.Caption:='Latitude: '+Params.Values['lat']+', Longitude: '+Params.Values['lng']; lat,lng Params , I want get address to show when click event . this demo Thank U. Quote
patmap Posted July 31, 2011 Posted July 31, 2011 Hi, Lat (Latitude), Lng (Longitude) has geography address on earth. For get address of lat, lng, you must be use Google API Best Regards Quote
Administrators Farshad Mohajeri Posted August 1, 2011 Administrators Posted August 1, 2011 Hi all What Param list form google map demo UniLabel1.Caption:='Latitude: '+Params.Values['lat']+', Longitude: '+Params.Values['lng']; lat,lng Params , I want get address to show when click event . this demo Thank U. Parameters are those which passed in client script: google.maps.event.addListener(map, 'click', function(e) { ajaxRequest(MainForm.UniHTMLFrame1, 'mapClick', ['lat='+e.latLng.lat(), 'lng='+e.latLng.lng()]); } ); No address info is passed as parameter. You must explore maps API and if there is a function to retrieve address you can add it to parameter list and handle it on server side. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.