Spaces:
Sleeping
Sleeping
Szymon Woźniak
commited on
Commit
•
eb0cf12
1
Parent(s):
0bab6e9
fix numbers
Browse files
app.py
CHANGED
@@ -23,9 +23,9 @@ st.set_page_config(layout="wide")
|
|
23 |
marker_cluster = MarkerCluster().add_to(my_map)
|
24 |
|
25 |
poland_points_num = st.sidebar.slider('Number of points for Poland', 0, 500, 350)
|
26 |
-
riga_points_num = st.sidebar.slider('Number of points for Riga, Latvia', 0,
|
27 |
-
tallin_points_num = st.sidebar.slider('Number of points for Tallin, Estonia', 0,
|
28 |
-
pskov_points_num = st.sidebar.slider('Number of points for Pskov', 0,
|
29 |
|
30 |
poland_points = get_points("Poland", poland_points_num)
|
31 |
pskov_points = get_points("Pskov", pskov_points_num)
|
|
|
23 |
marker_cluster = MarkerCluster().add_to(my_map)
|
24 |
|
25 |
poland_points_num = st.sidebar.slider('Number of points for Poland', 0, 500, 350)
|
26 |
+
riga_points_num = st.sidebar.slider('Number of points for Riga, Latvia', 0, 50, 5)
|
27 |
+
tallin_points_num = st.sidebar.slider('Number of points for Tallin, Estonia', 0, 50, 5)
|
28 |
+
pskov_points_num = st.sidebar.slider('Number of points for Pskov', 0, 50, 25)
|
29 |
|
30 |
poland_points = get_points("Poland", poland_points_num)
|
31 |
pskov_points = get_points("Pskov", pskov_points_num)
|