Spaces:
Sleeping
Sleeping
update readme
Browse files- README.md +1 -1
- pages/00_home.py +0 -4
- pages/01_leafmap.py +2 -2
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title: Solara
|
| 3 |
emoji: 🏃
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: green
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Solara Projects
|
| 3 |
emoji: 🏃
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: green
|
pages/00_home.py
CHANGED
|
@@ -11,10 +11,6 @@ def Page():
|
|
| 11 |
|
| 12 |
**A collection of [Solara](https://github.com/widgetti/solara) web apps for geospatial applications.**
|
| 13 |
|
| 14 |
-
- Web App: <https://giswqs-solara-template.hf.space>
|
| 15 |
-
- GitHub: <https://github.com/opengeos/solara-template>
|
| 16 |
-
- Hugging Face: <https://huggingface.co/spaces/giswqs/solara-template>
|
| 17 |
-
|
| 18 |
"""
|
| 19 |
|
| 20 |
solara.Markdown(markdown)
|
|
|
|
| 11 |
|
| 12 |
**A collection of [Solara](https://github.com/widgetti/solara) web apps for geospatial applications.**
|
| 13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
"""
|
| 15 |
|
| 16 |
solara.Markdown(markdown)
|
pages/01_leafmap.py
CHANGED
|
@@ -9,7 +9,7 @@ class Map(leafmap.Map):
|
|
| 9 |
def __init__(self, **kwargs):
|
| 10 |
super().__init__(**kwargs)
|
| 11 |
# Add what you want below
|
| 12 |
-
|
| 13 |
|
| 14 |
|
| 15 |
@solara.component
|
|
@@ -24,7 +24,7 @@ def Page():
|
|
| 24 |
on_zoom=zoom.set,
|
| 25 |
center=center.value,
|
| 26 |
on_center=center.set,
|
| 27 |
-
scroll_wheel_zoom=True,
|
| 28 |
toolbar_ctrl=False,
|
| 29 |
data_ctrl=False,
|
| 30 |
height="780px",
|
|
|
|
| 9 |
def __init__(self, **kwargs):
|
| 10 |
super().__init__(**kwargs)
|
| 11 |
# Add what you want below
|
| 12 |
+
|
| 13 |
|
| 14 |
|
| 15 |
@solara.component
|
|
|
|
| 24 |
on_zoom=zoom.set,
|
| 25 |
center=center.value,
|
| 26 |
on_center=center.set,
|
| 27 |
+
scroll_wheel_zoom=True,
|
| 28 |
toolbar_ctrl=False,
|
| 29 |
data_ctrl=False,
|
| 30 |
height="780px",
|