Enum Class MapScheme

java.lang.Object
java.lang.Enum<MapScheme>
com.here.sdk.mapview.MapScheme
All Implemented Interfaces:
Serializable, Comparable<MapScheme>, Constable

public enum MapScheme extends Enum<MapScheme>

Represents the preconfigured map schemes bundled with the SDK.

  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Day version of hybrid scheme combining satellite data with vector street network, map labels and POI information.
    Night version of hybrid scheme combining satellite data with vector street network, map labels and POI information.
    The day version of lite scheme is a simplified version of the NORMAL_DAY, featuring fewer map elements and a more limited color palette.
    The day version of lite hybrid scheme is a simplified version of the HYBRID_DAY, featuring fewer map elements and a more limited color palette.
    The night version of lite hybrid scheme is a simplified version of the HYBRID_NIGHT, featuring fewer map elements and a more limited color palette.
    The night version of lite scheme is a simplified version of the NORMAL_NIGHT, featuring fewer map elements and a more limited color palette.
    The day version of the logistics map scheme catering to the needs of dispatchers, fleet managers and delivery drivers, highlighting and featuring map elements relevant to logistics use cases.
    The day version of the logistics hybrid map scheme catering to the needs of dispatchers, fleet managers and delivery drivers, highlighting and featuring map elements relevant to logistics use cases.
    The night version of the logistics hybrid map scheme catering to the needs of dispatchers, fleet managers and delivery drivers, highlighting and featuring map elements relevant to logistics use cases.
    The night version of the logistics map scheme catering to the needs of dispatchers, fleet managers and delivery drivers, highlighting and featuring map elements relevant to logistics use cases.
    Normal map for day.
    Normal map for night.
    The day version of a scheme highlighting roads without showing other content such as labels or buildings.
    The night version of a scheme highlighting roads without showing other content such as labels or buildings.
    Satellite imagery.
    The day version of a scheme highlighting geographic features such as elevation, landforms and natural landscapes to provide a clear representation of the terrain.
    The night version of a scheme highlighting geographic features such as elevation, landforms and natural landscapes to provide a clear representation of the terrain.
  • Method Summary

    Modifier and Type
    Method
    Description
    static MapScheme
    Returns the enum constant of this class with the specified name.
    static MapScheme[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • NORMAL_DAY

      public static final MapScheme NORMAL_DAY

      Normal map for day.

    • NORMAL_NIGHT

      public static final MapScheme NORMAL_NIGHT

      Normal map for night.

    • SATELLITE

      public static final MapScheme SATELLITE

      Satellite imagery.

    • HYBRID_DAY

      public static final MapScheme HYBRID_DAY

      Day version of hybrid scheme combining satellite data with vector street network, map labels and POI information.

    • HYBRID_NIGHT

      public static final MapScheme HYBRID_NIGHT

      Night version of hybrid scheme combining satellite data with vector street network, map labels and POI information.

    • LITE_DAY

      public static final MapScheme LITE_DAY

      The day version of lite scheme is a simplified version of the NORMAL_DAY, featuring fewer map elements and a more limited color palette.

    • LITE_NIGHT

      public static final MapScheme LITE_NIGHT

      The night version of lite scheme is a simplified version of the NORMAL_NIGHT, featuring fewer map elements and a more limited color palette.

    • LITE_HYBRID_DAY

      public static final MapScheme LITE_HYBRID_DAY

      The day version of lite hybrid scheme is a simplified version of the HYBRID_DAY, featuring fewer map elements and a more limited color palette.

    • LITE_HYBRID_NIGHT

      public static final MapScheme LITE_HYBRID_NIGHT

      The night version of lite hybrid scheme is a simplified version of the HYBRID_NIGHT, featuring fewer map elements and a more limited color palette.

    • LOGISTICS_DAY

      public static final MapScheme LOGISTICS_DAY

      The day version of the logistics map scheme catering to the needs of dispatchers, fleet managers and delivery drivers, highlighting and featuring map elements relevant to logistics use cases.

    • LOGISTICS_NIGHT

      public static final MapScheme LOGISTICS_NIGHT

      The night version of the logistics map scheme catering to the needs of dispatchers, fleet managers and delivery drivers, highlighting and featuring map elements relevant to logistics use cases.

    • LOGISTICS_HYBRID_DAY

      public static final MapScheme LOGISTICS_HYBRID_DAY

      The day version of the logistics hybrid map scheme catering to the needs of dispatchers, fleet managers and delivery drivers, highlighting and featuring map elements relevant to logistics use cases.

    • LOGISTICS_HYBRID_NIGHT

      public static final MapScheme LOGISTICS_HYBRID_NIGHT

      The night version of the logistics hybrid map scheme catering to the needs of dispatchers, fleet managers and delivery drivers, highlighting and featuring map elements relevant to logistics use cases.

    • ROAD_NETWORK_DAY

      public static final MapScheme ROAD_NETWORK_DAY

      The day version of a scheme highlighting roads without showing other content such as labels or buildings. It is designed for usage as an additional zoomed-in mini-maps display to help drivers to orientate during navigation and to focus on the maneuver arrows which can be highlighted on top of this map scheme.

    • ROAD_NETWORK_NIGHT

      public static final MapScheme ROAD_NETWORK_NIGHT

      The night version of a scheme highlighting roads without showing other content such as labels or buildings. It is designed for usage as an additional zoomed-in mini-maps display to help drivers to orientate during navigation and to focus on the maneuver arrows which can be highlighted on top of this map scheme.

    • TOPO_DAY

      public static final MapScheme TOPO_DAY

      The day version of a scheme highlighting geographic features such as elevation, landforms and natural landscapes to provide a clear representation of the terrain. It is best suited for applications related to hiking, biking, skiing or any outdoor activities.

    • TOPO_NIGHT

      public static final MapScheme TOPO_NIGHT

      The night version of a scheme highlighting geographic features such as elevation, landforms and natural landscapes to provide a clear representation of the terrain. It is best suited for applications related to hiking, biking, skiing or any outdoor activities.

  • Method Details

    • values

      public static MapScheme[] 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 MapScheme 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