DESCRIPTION:
Geocode a given address with WGS84 Latitude and Longitude. Geocoding API (V3).
Generally, only one entry in the "results" array is returned for address lookups,
though the geocoder may return several results when address queries are ambiguous.
QUERY LIMIT PER DAY:
2,500 as of SEP-2011: "This limit may be changed in the future without notice."
http://code.google.com/intl/en-EN/apis/maps/documentation/geocoding/
LICENCE RESTRICTIONS:
The Geocoding API may only be used in conjunction with a Google map;
geocoding results without displaying them on a map is prohibited.
For complete details on allowed usage, consult the Maps API Terms of Service License Restrictions.
http://code.google.com/apis/maps/terms.html#section_10_12
----------------------------------------------------------------------------------------------*/
Let ([
vString1 = "http://maps.googleapis.com/maps/api/geocode/xml?address=";
vStreet = Substitute ( pStreet ; " "; "+");
vCity = Substitute ( pZip & " " & pCity; " "; "+");
vCountry = pCountry;
vString2 = "&sensor=false"
];
vString1 & vStreet & ",+" & vCity & ",+" & vCountry & vString2
)
Note: these examples are not guaranteed or supported
by BrianDunning.com. Please contact the individual developer with any questions
or problems.
Bar codes for your FileMaker solution: No special fonts, no plug-ins. Click
here.
Web Viewer Example Authors:
Link to all of your own Web Viewer Examples on this site with the following URL:
http://www.briandunning.com/filemaker-web-viewer/results.php?author=Your
Name Here