Running a code like this ...
Code:
Key := <Your Key Here> ; as far as I know you've to register with Google to get it
Road := "Bahnhofstrasse"
Number := 18
ZipCode := 8330
City := "Pfäffikon"
Country := "CH"
ClipBoard = http://maps.google.com/maps/geo?q=%Road%+%Number%+%ZipCode%+%City%+%Country%&key=%Key%&output=csv;
Will be responded with something like that ...
Code:
{
"name": "Bahnhofstrasse 18 8330 Pfäffikon CH",
"Status": {
"code": 200,
"request": "geocode"
},
"Placemark": [ {
"id": "p1",
"address": "Bahnhofstrasse 18, 8330 Pfäffikon, Schweiz",
"AddressDetails": {"Country": {"CountryNameCode": "CH","CountryName": "Schweiz","AdministrativeArea": {"AdministrativeAreaName": "Zürich","Locality": {"LocalityName": "Pfäffikon","Thoroughfare":{"ThoroughfareName": "Bahnhofstrasse 18"},"PostalCode": {"PostalCodeNumber": "8330"}}}},"Accuracy": 8},
"ExtendedData": {
"LatLonBox": {
"north": 47.3699861,
"south": 47.3636909,
"east": 8.7874406,
"west": 8.7811454
}
},
"Point": {
"coordinates": [ 8.7842930, 47.3668385, 0 ]
}
} ]
}
Good luck
