Enum Basemap.Type

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      DARK_GRAY_CANVAS_VECTOR
      Deprecated.
      A vector basemap with a dark gray canvas base layer and a reference layer with labels.
      IMAGERY
      Deprecated.
      A basemap with satellite imagery of the world.
      IMAGERY_WITH_LABELS
      Deprecated.
      A basemap with a satellite imagery base layer and a reference layer with labels.
      IMAGERY_WITH_LABELS_VECTOR
      Deprecated.
      A vector basemap with a satellite imagery base layer and a reference layer with labels.
      LIGHT_GRAY_CANVAS
      Deprecated.
      A basemap with a light gray canvas base layer and a reference layer with labels.
      LIGHT_GRAY_CANVAS_VECTOR
      Deprecated.
      A vector basemap with a light gray canvas base layer and a reference layer with labels.
      NATIONAL_GEOGRAPHIC
      Deprecated.
      A national geographic basemap.
      NAVIGATION_VECTOR
      Deprecated.
      A vector basemap with a street navigation layer.
      OCEANS
      Deprecated.
      A basemap with bathymetry, marine water body names, undersea feature names, and derived depth values in meters.
      OPEN_STREET_MAP
      Deprecated.
      A basemap with OpenStreetMap tiled layer.
      STREETS
      Deprecated.
      A basemap with a worldwide streets base layer.
      STREETS_NIGHT_VECTOR
      Deprecated.
      A vector basemap with a street base layer in night mode.
      STREETS_VECTOR
      Deprecated.
      A vector basemap with a worldwide streets base layer.
      STREETS_WITH_RELIEF_VECTOR
      Deprecated.
      A vector basemap with a street base layer and relief imagery layer.
      TERRAIN_WITH_LABELS
      Deprecated.
      A basemap with a terrain base layer, which includes shaded relief imagery, bathymetry, and coastal water features as well as a reference layer with labels.
      TERRAIN_WITH_LABELS_VECTOR
      Deprecated.
      A vector basemap with a terrain base layer and a label reference layer.
      TOPOGRAPHIC
      Deprecated.
      A basemap with a topographic base layer, including boundaries, cities, water features, physiographic features, parks, landmarks, transportation, and buildings.
      TOPOGRAPHIC_VECTOR
      Deprecated.
      A vector basemap with a topographic base layer, including boundaries, cities, water features, physiographic features, parks, landmarks, transportation, and buildings.
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static Basemap.Type valueOf​(java.lang.String name)
      Deprecated.
      Returns the enum constant of this type with the specified name.
      static Basemap.Type[] values()
      Deprecated.
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

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

      • DARK_GRAY_CANVAS_VECTOR

        public static final Basemap.Type DARK_GRAY_CANVAS_VECTOR
        Deprecated.
        A vector basemap with a dark gray canvas base layer and a reference layer with labels. This basemap draws attention to your thematic content by providing a dark background.

        Use BasemapStyle.ARCGIS_DARK_GRAY.

      • IMAGERY_WITH_LABELS

        public static final Basemap.Type IMAGERY_WITH_LABELS
        Deprecated.
        A basemap with a satellite imagery base layer and a reference layer with labels.

        This basemap contains a reference layer that is in Mature Support and will no longer be updated. Use BasemapStyle.ARCGIS_IMAGERY

      • IMAGERY_WITH_LABELS_VECTOR

        public static final Basemap.Type IMAGERY_WITH_LABELS_VECTOR
        Deprecated.
        A vector basemap with a satellite imagery base layer and a reference layer with labels.

        Use BasemapStyle.ARCGIS_IMAGERY.

      • LIGHT_GRAY_CANVAS

        public static final Basemap.Type LIGHT_GRAY_CANVAS
        Deprecated.
        A basemap with a light gray canvas base layer and a reference layer with labels. This basemap draws attention to your thematic content by providing a neutral background with minimal colors.

        This basemap is in Mature Support and will no longer be updated. Use BasemapStyle.ARCGIS_LIGHT_GRAY.

      • LIGHT_GRAY_CANVAS_VECTOR

        public static final Basemap.Type LIGHT_GRAY_CANVAS_VECTOR
        Deprecated.
        A vector basemap with a light gray canvas base layer and a reference layer with labels. This basemap draws attention to your thematic content by providing a neutral background with minimal colors.

        Use BasemapStyle.ARCGIS_LIGHT_GRAY.

      • NATIONAL_GEOGRAPHIC

        public static final Basemap.Type NATIONAL_GEOGRAPHIC
        Deprecated.
        A national geographic basemap. Designed as a general reference map for informational and educational purposes and as a basemap for use by GIS professionals and others for creating web maps and web mapping applications.

        This basemap is in Mature Support and will no longer be updated. Use the National Geographic Style Map - https://www.arcgis.com/home/item.html?id=f33a34de3a294590ab48f246e99958c9.

      • OCEANS

        public static final Basemap.Type OCEANS
        Deprecated.
        A basemap with bathymetry, marine water body names, undersea feature names, and derived depth values in meters.

        This basemap contains a reference layer that is in Mature Support and will no longer be updated. Use BasemapStyle.ARCGIS_OCEANS.

      • TOPOGRAPHIC

        public static final Basemap.Type TOPOGRAPHIC
        Deprecated.
        A basemap with a topographic base layer, including boundaries, cities, water features, physiographic features, parks, landmarks, transportation, and buildings.

        This basemap is in Mature Support and will no longer be updated. Use BasemapStyle.ARCGIS_TOPOGRAPHIC.

      • TERRAIN_WITH_LABELS

        public static final Basemap.Type TERRAIN_WITH_LABELS
        Deprecated.
        A basemap with a terrain base layer, which includes shaded relief imagery, bathymetry, and coastal water features as well as a reference layer with labels.

        Use BasemapStyle.ARCGIS_TERRAIN.

      • TERRAIN_WITH_LABELS_VECTOR

        public static final Basemap.Type TERRAIN_WITH_LABELS_VECTOR
        Deprecated.
        A vector basemap with a terrain base layer and a label reference layer.

        Use BasemapStyle.ARCGIS_TERRAIN.

      • TOPOGRAPHIC_VECTOR

        public static final Basemap.Type TOPOGRAPHIC_VECTOR
        Deprecated.
        A vector basemap with a topographic base layer, including boundaries, cities, water features, physiographic features, parks, landmarks, transportation, and buildings.

        Use BasemapStyle.ARCGIS_TOPOGRAPHIC.

    • Method Detail

      • values

        public static Basemap.Type[] values()
        Deprecated.
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Basemap.Type c : Basemap.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Basemap.Type valueOf​(java.lang.String name)
        Deprecated.
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null