Skip to content

Commit 2601e11

Browse files
authored
fix: export WebGLEarth classes from plugins __init__.py (#2230)
* fix: export WebGLEarth classes from plugins __init__.py (fixes docs build) * fix: sort imports and apply black formatting
1 parent 720ee82 commit 2601e11

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

folium/plugins/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@
3737
from folium.plugins.timestamped_wmstilelayer import TimestampedWmsTileLayers
3838
from folium.plugins.treelayercontrol import TreeLayerControl
3939
from folium.plugins.vectorgrid_protobuf import VectorGridProtobuf
40+
from folium.plugins.webgl_earth import (
41+
WebGLEarth,
42+
WebGLEarthMarker,
43+
WebGLEarthRealtime,
44+
WebGLEarthTileLayer,
45+
)
4046

4147
__all__ = [
4248
"AntPath",
@@ -79,4 +85,8 @@
7985
"TimestampedWmsTileLayers",
8086
"TreeLayerControl",
8187
"VectorGridProtobuf",
88+
"WebGLEarth",
89+
"WebGLEarthMarker",
90+
"WebGLEarthTileLayer",
91+
"WebGLEarthRealtime",
8292
]

0 commit comments

Comments
 (0)