File size: 1,040 Bytes
b056584
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""
# ipyleaflet
Map visualization using [ipyleaflet](https://ipyleaflet.readthedocs.io/), a ipywidgets wrapper for [leaflet.js](https://leafletjs.com/)
"""
import geemap

import solara

zoom = solara.reactive(5)
center = solara.reactive([53.2305799, 6.5323552])


@solara.component
def Page():
    solara.Text("Not available yet. Check back later.")
    # with solara.Column(style={"min-width": "500px", "height": "500px"}):
    #     # solara components support reactive variables
    #     solara.SliderInt(label="Zoom level", value=zoom, min=1, max=20)
    #     # using 3rd party widget library require wiring up the events manually
    #     # using zoom.value and zoom.set
    #     geemap.Map.element(  # type: ignore
    #         zoom=zoom.value,
    #         on_zoom=zoom.set,
    #         center=center.value,
    #         on_center=center.set,
    #         scroll_wheel_zoom=True,
    #         add_google_map=False,
    #     )
    #     solara.Text(f"Zoom: {zoom.value}")
    #     solara.Text(f"Center: {center.value}")