Package com.luciad.format.azuremaps
Enum Class ELcdAzureMapsMapStyle
- All Implemented Interfaces:
Serializable,Comparable<ELcdAzureMapsMapStyle>,Constable
Enumeration over the different map styles provided by Azure Maps.
See the Microsoft site
for more information about the possible values.
- Since:
- 2025.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA dark version ofBASE_ROAD.A dark version ofBASE_HYBRID_ROAD.A map that displays roads and boundaries, and the labels for those features.A dark version ofBASE_LABELS_ROAD.A map that displays labels of roads, natural and artificial features.A map that displays roads, natural and artificial features, and the labels for those features.A map that displays a combination of satellite and aerial imagery.A map with shaded relief data.A traffic map showing the absolute speed of all vehicles on the road.A traffic map showing areas of congestion.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.A weather map showing the latest infrared satellite images showing clouds by their temperature.A weather map showing the latest radar images including areas of rain, snow, ice and mixed conditions. -
Method Summary
Modifier and TypeMethodDescriptionReturns a display name for this map style.toString()static ELcdAzureMapsMapStyleReturns the enum constant of this class with the specified name.static ELcdAzureMapsMapStyle[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BASE_ROAD
A map that displays roads, natural and artificial features, and the labels for those features. -
BASE_DARKGREY
A dark version ofBASE_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
A map that displays roads and boundaries, and the labels for those features. -
BASE_HYBRID_DARKGREY
A dark version ofBASE_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
A map that displays labels of roads, natural and artificial features. -
BASE_LABELS_DARKGREY
A dark version ofBASE_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
A map with shaded relief data. -
TRAFFIC_ABSOLUTE
A traffic map showing the absolute speed of all vehicles on the road. -
TRAFFIC_DELAY
A traffic map showing areas of congestion. -
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
A weather map showing the latest infrared satellite images showing clouds by their temperature. -
WEATHER_RADAR
A weather map showing the latest radar images including areas of rain, snow, ice and mixed conditions. -
IMAGERY
A map that displays a combination of satellite and aerial imagery.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
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
- Overrides:
toStringin classEnum<ELcdAzureMapsMapStyle>
-