| 123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using InABox.Configuration;
- namespace Comal.Classes
- {
-
- public enum LiveMapStyle
- {
- OSM,
- BingStandard,
- BingTerrain,
- BingTerrainWithLabels,
- GoogleStandard,
- GoogleTerrain,
- GoogleTerrainWithLabels
- }
-
- public class LiveMapsSettings : IUserConfigurationSettings
- {
- [Obsolete("Replaced with EntityType", true)]
- public int ViewType { get; set; }
-
- [Obsolete("Replaced with EntityGroup", true)]
- public int ViewGroup { get; set; }
-
- public String? EntityType { get; set; }
-
- public Guid EntityGroup { get; set; }
-
- public LiveMapStyle MapStyle { get; set; }
-
- public String ApiKey { get; set; }
-
- }
- }
|