Module com.esri.arcgisruntime
Class VectorTileSourceInfo
java.lang.Object
com.esri.arcgisruntime.arcgisservices.VectorTileSourceInfo
The metadata for a vector tile source.
A vector tile source can be provided by online vector tile service, a vector tile style sheet, or a
local vector tile cache. VectorTileSourceInfo
provides basic information about the vector tile source such
as the name, URI, extent, and visible scale. You can obtain the VectorTileSourceInfo
from an
ArcGISVectorTiledLayer
or a VectorTileCache
.
- Since:
- 100.0.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
True if this source supports exporting tiles, false otherwise.Gets the default style.Gets the URI of the default style.Gets the full extent.Gets the initial extent.Gets an unmodifiable list of LevelOfDetail objects.int
Gets the maximum number of tiles that can be exported from the service.double
Gets the max scale.double
Gets the min scale.getName()
Gets the name.Gets the origin.Gets the spatial reference.getUri()
Gets the vector tile source URI.Gets the version.
-
Method Details
-
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
Gets the version.- Returns:
- the version
- Since:
- 100.0.0
-
getName
Gets the name.- Returns:
- the name
- Since:
- 100.0.0
-
canExportTiles
public boolean canExportTiles()True if this source supports exporting tiles, false otherwise.- Returns:
- true if tiles can be exported, false otherwise
- Since:
- 100.0.0
-
getDefaultStyleUri
Gets the URI of the default style.- Returns:
- the default style uri
- Since:
- 100.0.0
-
getDefaultStyle
Gets the default style.- Returns:
- the default style
- Since:
- 100.0.0
-
getInitialExtent
Gets the initial extent.- Returns:
- the initial extent
- Since:
- 100.0.0
-
getFullExtent
Gets the full extent.- Returns:
- the full extent
- Since:
- 100.0.0
-
getOrigin
Gets the origin. The origin is the upper left corner of the tiling scheme grid.- Returns:
- the origin
- Since:
- 100.0.0
-
getSpatialReference
Gets the spatial reference.- Returns:
- the spatial reference
- Since:
- 100.0.0
-
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
-