Update app.py
Browse files
app.py
CHANGED
@@ -90,11 +90,11 @@ speed = total_distance / (total_time / 3600)
|
|
90 |
# Layout: 75% left, 25% right
|
91 |
left_col, right_col = st.columns([3, 1])
|
92 |
|
93 |
-
# Left column: Map (
|
94 |
with left_col:
|
95 |
st.markdown("### π Hovercar Command Center πΈ")
|
96 |
m = create_map()
|
97 |
-
folium_static(m, width=
|
98 |
|
99 |
# Controls
|
100 |
col1, col2, col3 = st.columns(3)
|
|
|
90 |
# Layout: 75% left, 25% right
|
91 |
left_col, right_col = st.columns([3, 1])
|
92 |
|
93 |
+
# Left column: Map (16x9 landscape)
|
94 |
with left_col:
|
95 |
st.markdown("### π Hovercar Command Center πΈ")
|
96 |
m = create_map()
|
97 |
+
folium_static(m, width=1280, height=720) # 16:9 ratio scaled to fit
|
98 |
|
99 |
# Controls
|
100 |
col1, col2, col3 = st.columns(3)
|