bokeh.models.tiles¶
-
class
TileSource
(**kwargs)[source]¶ Bases:
bokeh.model.Model
A base class for all tile source types.
In general, tile sources are used as a required input for
TileRenderer
.-
attribution
¶ property type:
String
Data provider attribution content. This can include HTML content.
-
extra_url_vars
¶ property type:
Dict
(String
,Any
)A dictionary that maps url variable template keys to values.
These variables are useful for parts of tile urls which do not change from tile to tile (e.g. server host name, or layer name).
-
initial_resolution
¶ property type:
Float
Resolution (plot_units / pixels) of minimum zoom level of tileset projection. None to auto-compute.
-
max_zoom
¶ property type:
Int
A maximum zoom level for the tile layer. This is the most zoomed-in level.
-
min_zoom
¶ property type:
Int
A minimum zoom level for the tile layer. This is the most zoomed-out level.
-
url
¶ property type:
String
Tile service url e.g., http://c.tile.openstreetmap.org/{Z}/{X}/{Y}.png
-
-
class
MercatorTileSource
(**kwargs)[source]¶ Bases:
bokeh.models.tiles.TileSource
A base class for Mercator tile services (e.g.
WMTSTileSource
).
-
class
TMSTileSource
(**kwargs)[source]¶ Bases:
bokeh.models.tiles.MercatorTileSource
Contains tile config info and provides urls for tiles based on a templated url e.g.
http://your.tms.server.host/{Z}/{X}/{Y}.png
. The defining feature of TMS is the tile-origin in located at the bottom-left.TMSTileSource
can also be helpful in implementing tile renderers for custom tile sets, including non-spatial datasets.
-
class
WMTSTileSource
(**kwargs)[source]¶ Bases:
bokeh.models.tiles.MercatorTileSource
Behaves much like
TMSTileSource
but has its tile-origin in the top-left.This is the most common used tile source for web mapping applications. Such companies as Google, MapQuest, Stamen, Esri, and OpenStreetMap provide service which use the WMTS specification e.g.
http://c.tile.openstreetmap.org/{Z}/{X}/{Y}.png
.
-
class
QUADKEYTileSource
(**kwargs)[source]¶ Bases:
bokeh.models.tiles.MercatorTileSource
Has the same tile origin as the
WMTSTileSource
but requests tiles using a quadkey argument instead of X, Y, Z e.g.http://your.quadkey.tile.host/{Q}.png
-
class
BBoxTileSource
(**kwargs)[source]¶ Bases:
bokeh.models.tiles.MercatorTileSource
Has the same default tile origin as the
WMTSTileSource
but requested tiles use a{XMIN}
,{YMIN}
,{XMAX}
,{YMAX}
e.g.http://your.custom.tile.service?bbox={XMIN},{YMIN},{XMAX},{YMAX}
.