Enum Class ELcdAzureMapsMapStyle

java.lang.Object
java.lang.Enum<ELcdAzureMapsMapStyle>
com.luciad.format.azuremaps.ELcdAzureMapsMapStyle
All Implemented Interfaces:
Serializable, Comparable<ELcdAzureMapsMapStyle>, Constable

public enum ELcdAzureMapsMapStyle extends Enum<ELcdAzureMapsMapStyle>
Enumeration over the different map styles provided by Azure Maps. See the Microsoft site for more information about the possible values.
Since:
2025.0
  • Enum Constant Details

    • BASE_ROAD

      public static final ELcdAzureMapsMapStyle BASE_ROAD
      A map that displays roads, natural and artificial features, and the labels for those features.
    • BASE_DARKGREY

      public static final ELcdAzureMapsMapStyle BASE_DARKGREY
      A dark version of BASE_ROAD. The map uses a minimum amount of colors, making it ideal as background dataset as it does not interfere with business data.
    • BASE_HYBRID_ROAD

      public static final ELcdAzureMapsMapStyle BASE_HYBRID_ROAD
      A map that displays roads and boundaries, and the labels for those features.
    • BASE_HYBRID_DARKGREY

      public static final ELcdAzureMapsMapStyle BASE_HYBRID_DARKGREY
      A dark version of BASE_HYBRID_ROAD. The map uses a minimum amount of colors, making it ideal as background dataset as it does not interfere with business data.
    • BASE_LABELS_ROAD

      public static final ELcdAzureMapsMapStyle BASE_LABELS_ROAD
      A map that displays labels of roads, natural and artificial features.
    • BASE_LABELS_DARKGREY

      public static final ELcdAzureMapsMapStyle BASE_LABELS_DARKGREY
      A dark version of BASE_LABELS_ROAD. The map uses a minimum amount of colors, making it ideal as background dataset as it does not interfere with business data.
    • SHADED_RELIEF

      public static final ELcdAzureMapsMapStyle SHADED_RELIEF
      A map with shaded relief data.
    • TRAFFIC_ABSOLUTE

      public static final ELcdAzureMapsMapStyle TRAFFIC_ABSOLUTE
      A traffic map showing the absolute speed of all vehicles on the road.
    • TRAFFIC_DELAY

      public static final ELcdAzureMapsMapStyle TRAFFIC_DELAY
      A traffic map showing areas of congestion.
    • TRAFFIC_REDUCED

      public static final ELcdAzureMapsMapStyle TRAFFIC_REDUCED
      A traffic map showing the differences from "free flow", which refers to conditions where there is no congestion and traffic can follow the speed limits.
    • WEATHER_INFRAFRED

      public static final ELcdAzureMapsMapStyle WEATHER_INFRAFRED
      A weather map showing the latest infrared satellite images showing clouds by their temperature.
    • WEATHER_RADAR

      public static final ELcdAzureMapsMapStyle WEATHER_RADAR
      A weather map showing the latest radar images including areas of rain, snow, ice and mixed conditions.
    • IMAGERY

      public static final ELcdAzureMapsMapStyle IMAGERY
      A map that displays a combination of satellite and aerial imagery.
  • Method Details

    • values

      public static ELcdAzureMapsMapStyle[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ELcdAzureMapsMapStyle valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getDisplayName

      public String getDisplayName()
      Returns a display name for this map style.
      • IMAGERY: Imagery
      • BASE_ROAD: Road
      • BASE_DARKGREY: Road Dark
      • BASE_HYBRID_ROAD: Hybrid Road
      • BASE_HYBRID_DARKGREY: Hybrid Road Dark
      • BASE_LABELS_ROAD: Road Labels
      • BASE_LABELS_DARKGREY: Road Labels Dark
      • SHADED_RELIEF: Shaded Relief
      • TRAFFIC_ABSOLUTE: Traffic Absolute
      • TRAFFIC_DELAY: Traffic Delay
      • TRAFFIC_REDUCED: Traffic Reduced
      • WEATHER_INFRAFRED: Weather Infrared
      • WEATHER_RADAR: Weather Radar
      Returns:
      a display name.
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ELcdAzureMapsMapStyle>