Class VectorTileSourceInfo
- java.lang.Object
-
- com.esri.arcgisruntime.arcgisservices.VectorTileSourceInfo
-
public final class VectorTileSourceInfo extends java.lang.Object
Represents metadata for anArcGISVectorTiledLayer
.- Since:
- 100.0.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canExportTiles()
Gets whether or not the exporting of tiles for offline use is allowed.VectorTileStyle
getDefaultStyle()
Gets the default style.java.lang.String
getDefaultStyleUri()
Gets the URI of the default style.Envelope
getFullExtent()
Gets the full extent.Envelope
getInitialExtent()
Gets the initial extent.java.util.List<LevelOfDetail>
getLevelsOfDetail()
Gets an unmodifiable list of LevelOfDetail objects.int
getMaxExportTilesCount()
Gets the maximum number of tiles that can be exported from the service.double
getMaxScale()
Gets the max scale.double
getMinScale()
Gets the min scale.java.lang.String
getName()
Gets the name.Point
getOrigin()
Gets the origin.SpatialReference
getSpatialReference()
Gets the spatial reference.java.lang.String
getUri()
Gets the vector tile source URI.java.lang.String
getVersion()
Gets the version.
-
-
-
Method Detail
-
getUri
public java.lang.String getUri()
Gets the vector tile source URI.- Returns:
- the vector tile source URI
- Since:
- 100.0.0
-
getMinScale
public double getMinScale()
Gets the min scale.- Returns:
- the min scale
- Since:
- 100.0.0
-
getMaxScale
public double getMaxScale()
Gets the max scale.- Returns:
- the max scale
- Since:
- 100.0.0
-
getVersion
public java.lang.String getVersion()
Gets the version.- Returns:
- the version
- Since:
- 100.0.0
-
getName
public java.lang.String getName()
Gets the name.- Returns:
- the name
- Since:
- 100.0.0
-
canExportTiles
public boolean canExportTiles()
Gets whether or not the exporting of tiles for offline use is allowed.- Returns:
- true if tiles can be exported, false otherwise
- Since:
- 100.0.0
-
getDefaultStyleUri
public java.lang.String getDefaultStyleUri()
Gets the URI of the default style.- Returns:
- the default style uri
- Since:
- 100.0.0
-
getDefaultStyle
public VectorTileStyle getDefaultStyle()
Gets the default style.- Returns:
- the default style
- Since:
- 100.0.0
-
getInitialExtent
public Envelope getInitialExtent()
Gets the initial extent.- Returns:
- the initial extent
- Since:
- 100.0.0
-
getFullExtent
public Envelope getFullExtent()
Gets the full extent.- Returns:
- the full extent
- Since:
- 100.0.0
-
getOrigin
public Point getOrigin()
Gets the origin. The origin is the upper left corner of the tiling scheme grid.- Returns:
- the origin
- Since:
- 100.0.0
-
getSpatialReference
public SpatialReference getSpatialReference()
Gets the spatial reference.- Returns:
- the spatial reference
- Since:
- 100.0.0
-
getLevelsOfDetail
public java.util.List<LevelOfDetail> getLevelsOfDetail()
Gets an unmodifiable list of LevelOfDetail objects.- Returns:
- an unmodifiable list of LevelOfDetail objects
- Since:
- 100.2.0
-
getMaxExportTilesCount
public int getMaxExportTilesCount()
Gets the maximum number of tiles that can be exported from the service.- Returns:
- the maximum number of tiles that can be exported from the service.
- Since:
- 100.6.0
-
-