LiveMapsSettings.cs 808 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using InABox.Configuration;
  3. namespace Comal.Classes
  4. {
  5. public enum LiveMapStyle
  6. {
  7. OSM,
  8. BingStandard,
  9. BingTerrain,
  10. BingTerrainWithLabels,
  11. GoogleStandard,
  12. GoogleTerrain,
  13. GoogleTerrainWithLabels
  14. }
  15. public class LiveMapsSettings : IUserConfigurationSettings
  16. {
  17. [Obsolete("Replaced with EntityType", true)]
  18. public int ViewType { get; set; }
  19. [Obsolete("Replaced with EntityGroup", true)]
  20. public int ViewGroup { get; set; }
  21. public String? EntityType { get; set; }
  22. public Guid EntityGroup { get; set; }
  23. public LiveMapStyle MapStyle { get; set; }
  24. public String ApiKey { get; set; }
  25. }
  26. }