/Geocoding/Artem.GoogleGeocoding/GeoLocationType.cs

# · C# · 30 lines · 12 code · 2 blank · 16 comment · 0 complexity · 37837f3bae2472e55006189faf0bf7e8 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Artem.Google.Net {
  6. /// <summary>
  7. ///
  8. /// </summary>
  9. public enum GeoLocationType {
  10. /// <summary>
  11. /// indicates that the returned result is a precise geocode for which we have location information accurate down to street address precision.
  12. /// </summary>
  13. ROOFTOP,
  14. /// <summary>
  15. /// indicates that the returned result reflects an approximation (usually on a road) interpolated between two precise points (such as intersections).
  16. /// Interpolated results are generally returned when rooftop geocodes are unavailable for a street address.
  17. /// </summary>
  18. RANGE_INTERPOLATED,
  19. /// <summary>
  20. /// indicates that the returned result is the geometric center of a result such as a polyline (for example, a street) or polygon (region).
  21. /// </summary>
  22. GEOMETRIC_CENTER,
  23. /// <summary>
  24. /// indicates that the returned result is approximate.
  25. /// </summary>
  26. APPROXIMATE
  27. }
  28. }