Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -35,7 +35,10 @@ with gr.Blocks() as demo:
|
|
35 |
csv_selector = gr.Dropdown(label="🏞️🏙️ Select CSV File 🗺️✈️", choices=csv_files)
|
36 |
|
37 |
# Dataframe and map components
|
38 |
-
data = gr.Dataframe(
|
|
|
|
|
|
|
39 |
map_component = Folium(height=400)
|
40 |
|
41 |
# Button to reload data and map
|
|
|
35 |
csv_selector = gr.Dropdown(label="🏞️🏙️ Select CSV File 🗺️✈️", choices=csv_files)
|
36 |
|
37 |
# Dataframe and map components
|
38 |
+
data = gr.Dataframe(
|
39 |
+
row_count=(5,'static'),
|
40 |
+
interactive=False
|
41 |
+
)
|
42 |
map_component = Folium(height=400)
|
43 |
|
44 |
# Button to reload data and map
|