File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
jupyter_leaflet/src/layers Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -662,7 +662,7 @@ class TileLayer(RasterLayer):
662
662
663
663
Attributes
664
664
----------
665
- url: string, default "https://{s}. tile.openstreetmap.org/{z}/{x}/{y}.png"
665
+ url: string, default "https://tile.openstreetmap.org/{z}/{x}/{y}.png"
666
666
Url to the tiles service.
667
667
min_zoom: int, default 0
668
668
The minimum zoom level down to which this layer will be displayed (inclusive).
@@ -697,7 +697,7 @@ class TileLayer(RasterLayer):
697
697
_model_name = Unicode ("LeafletTileLayerModel" ).tag (sync = True )
698
698
699
699
bottom = Bool (True ).tag (sync = True )
700
- url = Unicode ("https://{s}. tile.openstreetmap.org/{z}/{x}/{y}.png" ).tag (sync = True )
700
+ url = Unicode ("https://tile.openstreetmap.org/{z}/{x}/{y}.png" ).tag (sync = True )
701
701
min_zoom = Int (0 ).tag (sync = True , o = True )
702
702
max_zoom = Int (18 ).tag (sync = True , o = True )
703
703
min_native_zoom = Int (default_value = None , allow_none = True ).tag (sync = True , o = True )
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export class LeafletTileLayerModel extends LeafletRasterLayerModel {
13
13
_view_name : 'LeafletTileLayerView' ,
14
14
_model_name : 'LeafletTileLayerModel' ,
15
15
bottom : true ,
16
- url : 'https://{s}. tile.openstreetmap.org/{z}/{x}/{y}.png' ,
16
+ url : 'https://tile.openstreetmap.org/{z}/{x}/{y}.png' ,
17
17
min_zoom : 0 ,
18
18
max_zoom : 18 ,
19
19
min_native_zoom : null ,
You can’t perform that action at this time.
0 commit comments