Interface VectorTile
-
- All Known Implementing Classes:
MVTTile
public interface VectorTile
An interface that is used to draw vector tiles, instead of using images- Since:
- 17862
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getExtent()
Get the extent of the tile (in pixels)Collection<Layer>
getLayers()
Get the layers for this vector tile
-
-
-
Method Detail
-
getLayers
Collection<Layer> getLayers()
Get the layers for this vector tile- Returns:
- A collection of layers
-
getExtent
int getExtent()
Get the extent of the tile (in pixels)- Returns:
- The tile extent (pixels)
-
-