pjgerrits commited on
Commit
7aa9760
·
1 Parent(s): 9cebb1e

change map size

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -61,7 +61,7 @@ def save_data(lat, lon, description, rating):
61
  st.title('Getting Lost Mapping')
62
 
63
  # Create the Folium map with Draw plugin for point markers
64
- m = folium.Map(location=[51.505, -0.09], zoom_start=13, width=1500, height=600)
65
  draw = Draw(draw_options={'polyline': False, "marker": True, 'rectangle': False, 'polygon': False, 'circle': False, 'circlemarker': False})
66
  m.add_child(draw)
67
 
 
61
  st.title('Getting Lost Mapping')
62
 
63
  # Create the Folium map with Draw plugin for point markers
64
+ m = folium.Map(location=[51.505, -0.09], zoom_start=13, width='100%', height='100%')
65
  draw = Draw(draw_options={'polyline': False, "marker": True, 'rectangle': False, 'polygon': False, 'circle': False, 'circlemarker': False})
66
  m.add_child(draw)
67