awacke1 commited on
Commit
14695a6
Β·
verified Β·
1 Parent(s): 0e91127

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 (9x16 landscape)
94
  with left_col:
95
  st.markdown("### πŸš€ Hovercar Command Center πŸ›Έ")
96
  m = create_map()
97
- folium_static(m, width=720, height=1280) # 9:16 ratio scaled to fit
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)