awacke1 commited on
Commit
dc80681
Β·
verified Β·
1 Parent(s): 7226544

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 landscape)
117
  with left_col:
118
  st.markdown("### πŸš€ Hovercar Command Center πŸ›Έ")
119
  m = create_map()
120
- folium_static(m, width=1280, height=720)
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)