Update app.py
Browse files
app.py
CHANGED
@@ -113,11 +113,11 @@ speed = total_distance / (total_time / 3600) # mph
|
|
113 |
# Layout: 75% left, 25% right
|
114 |
left_col, right_col = st.columns([3, 1])
|
115 |
|
116 |
-
# Left column: Map (16x9
|
117 |
with left_col:
|
118 |
st.markdown("### π Hovercar Command Center πΈ")
|
119 |
m = create_map()
|
120 |
-
folium_static(m, width=
|
121 |
|
122 |
# Controls
|
123 |
col1, col2, col3 = st.columns(3)
|
|
|
113 |
# Layout: 75% left, 25% right
|
114 |
left_col, right_col = st.columns([3, 1])
|
115 |
|
116 |
+
# Left column: Map (16x9, 2/3 larger)
|
117 |
with left_col:
|
118 |
st.markdown("### π Hovercar Command Center πΈ")
|
119 |
m = create_map()
|
120 |
+
folium_static(m, width=2133, height=1200) # 16:9 ratio, 2/3 larger than 1280x720
|
121 |
|
122 |
# Controls
|
123 |
col1, col2, col3 = st.columns(3)
|