diff --git a/folium/plugins/__init__.py b/folium/plugins/__init__.py index 7888f2ef42..bfc4208a65 100644 --- a/folium/plugins/__init__.py +++ b/folium/plugins/__init__.py @@ -37,6 +37,12 @@ from folium.plugins.timestamped_wmstilelayer import TimestampedWmsTileLayers from folium.plugins.treelayercontrol import TreeLayerControl from folium.plugins.vectorgrid_protobuf import VectorGridProtobuf +from folium.plugins.webgl_earth import ( + WebGLEarth, + WebGLEarthMarker, + WebGLEarthRealtime, + WebGLEarthTileLayer, +) __all__ = [ "AntPath", @@ -79,4 +85,8 @@ "TimestampedWmsTileLayers", "TreeLayerControl", "VectorGridProtobuf", + "WebGLEarth", + "WebGLEarthMarker", + "WebGLEarthTileLayer", + "WebGLEarthRealtime", ]