Class: TiledMapServiceLayerE-mail This Topic Printable Version Give Us Feedback

Description

The base class for all tiled map service layers. (As of v1.2)

TiledMapServiceLayer has no constructor. Use ArcGISTiledMapServiceLayer instead.

Class hierarchy

esri.layers.Layer
  |_ esri.layers.TiledMapServiceLayer

Subclasses

ArcGISTiledMapServiceLayer  VETiledLayer  

Properties

Property Type Description
fullExtent Extent Full extent as defined by the map service.
initialExtent Extent Initial extent as defined by the map service.
spatialReference SpatialReference The spatial reference of the map service. See Projected Coordinate Systems and Geographic Coordinate Systems for the list of supported spatial references.
tileInfo TileInfo Returns TileInfo, which has information on the tiling schema.

Methods

Method Return Value Description
getTileUrl(level, row, column) String Method to implement when extending TiledMapServiceLayer. For more details, see Creating custom layer types.
refresh() none Reloads all the tiles in the current view.
Properties Detail

<Extent> fullExtent

Full extent as defined by the map service.

<Extent> initialExtent

Initial extent as defined by the map service.

<SpatialReference> spatialReference

The spatial reference of the map service. See Projected Coordinate Systems and Geographic Coordinate Systems for the list of supported spatial references.

<TileInfo> tileInfo

Returns TileInfo, which has information on the tiling schema.
Methods Detail

getTileUrl(level, row, column)

Method to implement when extending TiledMapServiceLayer. For more details, see Creating custom layer types. (As of v1.3)
Return value: String
Input Parameters:
<Number> level Required Requested tile's level.
<Number> row Required Requested tile's row.
<Number> column Required Requested tile's column.

refresh()

Reloads all the tiles in the current view. (As of v1.2)
Return value: none