File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
docs/source/api_reference Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,8 @@ Attribute Default Value
52
52
url "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
53
53
min_zoom 0
54
54
max_zoom 18
55
+ min_native_zoom 0
56
+ max_native_zoom 18
55
57
tile_size 256
56
58
attribution "Map data (c) <a href=\' https://openstreetmap.org\' >OpenStreetMap</a> contributors"
57
59
detect_retina False
Original file line number Diff line number Diff line change @@ -235,6 +235,8 @@ class TileLayer(RasterLayer):
235
235
url = Unicode ('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png' ).tag (sync = True )
236
236
min_zoom = Int (0 ).tag (sync = True , o = True )
237
237
max_zoom = Int (18 ).tag (sync = True , o = True )
238
+ min_native_zoom = Int (0 ).tag (sync = True , o = True )
239
+ max_native_zoom = Int (18 ).tag (sync = True , o = True )
238
240
tile_size = Int (256 ).tag (sync = True , o = True )
239
241
attribution = Unicode ('Map data (c) <a href="https://openstreetmap.org">OpenStreetMap</a> contributors' ).tag (sync = True , o = True )
240
242
detect_retina = Bool (False ).tag (sync = True , o = True )
You can’t perform that action at this time.
0 commit comments