ConfidenceScoresTypeAfter Field |
Namespace: Telogis.GeoBase
// Geocode an address GeocodeAddress addr = GeoCoder.GeoCode("20 Enterprise, Aliso Viejo, California", Country.USA)[0]; // How confident is the geocoder that it found the right TypeAfter ('Street', 'Crescent' etc)? Console.WriteLine(String.Format("TypeAfter confidence: {0}", addr.ConfidenceScores.TypeAfter)); // Prints 'TypeAfter confidence: 1' // 0.0 to 1.0 >> 1 indicates a perfect match.