Class ArcGISTiledElevationSource

java.lang.Object
com.esri.arcgisruntime.mapping.ElevationSource
com.esri.arcgisruntime.mapping.ArcGISTiledElevationSource
All Implemented Interfaces:
RemoteResource, Loadable

public final class ArcGISTiledElevationSource extends ElevationSource
A tile based elevation service.
Since:
100.0.0
  • Property Details

  • Constructor Details

    • ArcGISTiledElevationSource

      public ArcGISTiledElevationSource(String uri)
      Creates an ArcGISTiledElevationSource instance.
      Parameters:
      uri - The URI of the service
      Throws:
      IllegalArgumentException - if the URI is null or empty
      Since:
      100.0.0
    • ArcGISTiledElevationSource

      public ArcGISTiledElevationSource(PortalItem portalItem)
      Creates an ArcGISTiledElevationSource instance based on a PortalItem.

      If the portal item is not in LoadStatus.LOADED state it will be loaded automatically when this ArcGISTiledElevationSource instance is loaded.

      If the loaded portalItem is not of type PortalItem.Type.IMAGE_SERVICE the elevation source will fail to load.

      Parameters:
      portalItem - PortalItem from which ArcGISTiledElevationSource will be created
      Throws:
      IllegalArgumentException - if the portalItem is null
      Since:
      100.0.0
    • ArcGISTiledElevationSource

      public ArcGISTiledElevationSource(TileCache tileCache)
      Creates an ArcGIS tiled elevation source with a Tile cache.

      An ArcGIS tiled elevation source is added to a Surface and provides elevation data that layers may be draped or offset from. The ArcGIS tiled elevation source uses a Tile cache to provide the elevation data. Only tile caches that contain LERC tiles are supported. Use an ExportTileCacheTask to create an offline tile cache from an elevation image service.

      Parameters:
      tileCache - metadata for a local cache of elevation tiles that can be used to create an elevation source
      Throws:
      NullPointerException - if tileCache is null
      Since:
      200.2.0
  • Method Details

    • getItem

      public Item getItem()
      Gets the Item associated with this source.
      Returns:
      the associated Item or null if this source is not associated with an Item
      Since:
      100.0.0
    • tileCacheProperty

      public ReadOnlyObjectProperty<TileCache> tileCacheProperty()
      The tile cache for the elevation service.
      Since:
      200.2.0
      See Also:
    • getTileCache

      public TileCache getTileCache()
      Gets the value of the property tileCache.
      Property description:
      The tile cache for the elevation service.
      Since:
      200.2.0
    • getUri

      public String getUri()
      Description copied from interface: RemoteResource
      Gets the URI of this RemoteResource. Typically this is the URI used to instantiate the object.
      Returns:
      the URI of this RemoteResource