PageRenderTime 46ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/Geocoding/Artem.GoogleGeocoding/Geometry.cs

#
C# | 41 lines | 14 code | 8 blank | 19 comment | 0 complexity | 152c52df152cc232fda5b8dbd53a5a37 MD5 | raw file
Possible License(s): MIT
  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 class Geometry {
  10. #region Properties ///////////////////////////////////////////////////////////////////////
  11. /// <summary>
  12. /// Gets or sets the bounds.
  13. /// </summary>
  14. /// <value>The bounds.</value>
  15. public GeoBounds Bounds { get; set; }
  16. /// <summary>
  17. /// Gets or sets the location.
  18. /// </summary>
  19. /// <value>The location.</value>
  20. public GeoLocation Location { get; set; }
  21. /// <summary>
  22. /// Gets or sets the type of the location.
  23. /// </summary>
  24. /// <value>The type of the location.</value>
  25. public GeoLocationType LocationType { get; set; }
  26. /// <summary>
  27. /// Gets or sets the viewport.
  28. /// </summary>
  29. /// <value>The viewport.</value>
  30. public GeoBounds Viewport { get; set; }
  31. #endregion
  32. }
  33. }