Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/viz.md
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ The `RasterTilesViz` object handles the creation of a simple raster tiles visual

Parameter | Description | Example
--|--|--
tiles_url | tiles endpoint | 'https://a.tile.openstreetmap.org/{z}/{x}/{y}.png'
tiles_url | tiles endpoint | 'https://tile.openstreetmap.org/{z}/{x}/{y}.png'
tiles_size | mapbox-gl tiles size | 256
tiles_bounds | tiles endpoint bounds | [124.97480681619507, 10.876763902260592, 124.99391704636035, 10.888369402219947]
tiles_minzoom | tiles endpoint min zoom | 0
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/rastertile-viz-type-example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"metadata": {},
"outputs": [],
"source": [
"tiles_url = 'https://a.tile.openstreetmap.org/{z}/{x}/{y}.png'\n",
"tiles_url = 'https://tile.openstreetmap.org/{z}/{x}/{y}.png'\n",
"\n",
"# Create an empty style\n",
"style = {'version': 8, 'sources': {}, 'layers': []}\n",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,5 +422,5 @@ def test_display_ImageVizArray(display, data):
def test_display_RasterTileViz(display, data):
"""Assert that show calls the mocked display function
"""
tiles_url = 'https://a.tile.openstreetmap.org/{z}/{x}/{y}.png'
tiles_url = 'https://tile.openstreetmap.org/{z}/{x}/{y}.png'
viz = RasterTilesViz(tiles_url, access_token=TOKEN)