Enum Class ELcdBingMapsMapStyle

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

public enum ELcdBingMapsMapStyle extends Enum<ELcdBingMapsMapStyle>
Enumeration over the different styles (coverages) provided by BingMaps.
Since:
11.0
  • Enum Constant Details

    • ROAD

      public static final ELcdBingMapsMapStyle ROAD
      Raster data of roads, cities, countries etc...
    • AERIAL

      public static final ELcdBingMapsMapStyle AERIAL
      Top down photographic imagery.
    • AERIAL_WITH_LABELS

      public static final ELcdBingMapsMapStyle AERIAL_WITH_LABELS
      Top down photographic imagery with location labels: countries, cities, roads etc...
    • CANVAS_DARK

      public static final ELcdBingMapsMapStyle CANVAS_DARK
      A dark version of the road maps. The map uses a minimum amount of colors, making it ideal as background dataset as it does not interfere with business data.
      Since:
      2017.1
    • CANVAS_LIGHT

      public static final ELcdBingMapsMapStyle CANVAS_LIGHT
      A lighter version of the road maps which also has some of the details such as hill shading disabled.
      Since:
      2017.1
    • CANVAS_GRAY

      public static final ELcdBingMapsMapStyle CANVAS_GRAY
      A grayscale version of the road maps. The map uses a minimum amount of colors, making it ideal as background dataset as it does not interfere with business data.
      Since:
      2017.1
  • Method Details

    • values

      public static ELcdBingMapsMapStyle[] 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 ELcdBingMapsMapStyle 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.
      • AERIAL: Aerial
      • ROAD: road
      • AERIAL_WITH_LABELS: Labeled Aerial
      Returns:
      a display name.
    • toString

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