File size: 771 Bytes
b056584 3619c25 b056584 3619c25 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 32 33 34 35 |
import solara
@solara.component
def Page():
markdown = """
## Solara for Geospatial Applications
### Introduction
**A collection of [solara](https://github.com/widgetti/solara) web apps for geospatial applications.**
Just a proof-of-concept for now. Not all features are working yet. More features will be added in the future. Click on the menu above to see the other pages.
- Web App: <https://giswqs-solara-geospatial.hf.space>
- Solara-Geospatial: <https://github.com/opengeos/solara-geospatial>
### Demos
#### Cesium

#### Mapbox

#### MapLibre

"""
solara.Markdown(markdown)
|