Google Maps + Google Local Search Generate Lat/long From Uk Postcode
Solution 1:
To convert a UK postcode to a Latitude and Longitude, use Google's Geocoding API.
http://maps.googleapis.com/maps/api/geocode/json?address=POSTCODE&sensor=false
You will receive a JSON response which you can easily parse with JavaScript to populate your hidden fields.
Solution 2:
I would use JavaScript to control the form submission, and basically include two hidden fields within the form for lat/long. So, after user submits the address/zip code and etc basically use that information and query Google's Geocoding API and retrive the lat/long you are after. After the query, you can insert the queried Lat/Long into the hidden fields's values and then submit using JavaScript.
hidden field in the form and the attach function to the onclick on the submit button of the form:
<inputtype='hidden' name='lat'id='lat' value='' />
<inputtype='hidden' name='lng'id='lng' value='' />
<inputtype="button" value="Send" onClick="javascript:querieBeforeSubmit();">
This is the JavaScript that queries geoapi and insert value into hidden field
<scripttype='text/javascript'>functionquerieBeforeSubmit(){
//queries Google Geoapi w/ address etcvar lat = //retrived latvar lng = //retrived lngdocument.getElementById('lat').value = lat;
document.getElementById('lng').value = lng;
form.submit();
}
</script>
Solution 3:
Got it sorted by mashing this page - http://gmaps-samples-v3.googlecode.com/svn/trunk/geocoder/getlatlng.html
Works really well.
Post a Comment for "Google Maps + Google Local Search Generate Lat/long From Uk Postcode"