Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -13,5 +13,7 @@ right_url = 'https://opendata.digitalglobe.com/events/california-fire-2020/post-
|
|
13 |
left_input = gr.Textbox(value=left_url, label="Left Layer URL")
|
14 |
right_input = gr.Textbox(value=right_url, label="Right Layer URL")
|
15 |
|
16 |
-
|
|
|
|
|
17 |
demo.launch()
|
|
|
13 |
left_input = gr.Textbox(value=left_url, label="Left Layer URL")
|
14 |
right_input = gr.Textbox(value=right_url, label="Right Layer URL")
|
15 |
|
16 |
+
title = 'Gradio for Geospatial Applications'
|
17 |
+
description = 'Visualizing geospatial datasets with Gradio and leafmap'
|
18 |
+
demo = gr.Interface(split, [left_input, right_input], "html", title=title, description=description)
|
19 |
demo.launch()
|