How do I find the LatLon of the nearest street address?

ReverseGeoCodeFull() will find the nearest StreetLink The Intersection field will give you the LatLon of the nearest point on that StreetLink.

 

C# Example using a LatLon in Talbert Park, Newport Beach:

LatLon posn = new LatLon(33.643186, -117.946411); GeoCodeFull gcf = GeoCoder.ReverseGeoCodeFull(posn); LatLon st_posn = gcf.Intersection; Console.WriteLine("Nearest address = {0}\nlocation = {1}", gcf.Address, st_posn); 

 

The output is:

Nearest address = Balboa Ave, Newport Beach, CA, 92663, USA location = 33.643530,-117.945080 
What is a recommended minimum setup for GeoBase?