Spaces:
Runtime error
Runtime error
David Wisdom commited on
Commit ·
4ebbf66
1
Parent(s): 9b1f7b2
change zoom level
Browse files
app.py
CHANGED
|
@@ -78,7 +78,7 @@ def plot_example(df: pd.DataFrame, labels: np.ndarray):
|
|
| 78 |
fig = px.scatter_mapbox(df, lon='longitude', lat='latitude',
|
| 79 |
hover_name='display_name',
|
| 80 |
color=labels,
|
| 81 |
-
zoom=
|
| 82 |
color_discrete_sequence=px.colors.qualitative.Dark24)
|
| 83 |
return fig
|
| 84 |
|
|
|
|
| 78 |
fig = px.scatter_mapbox(df, lon='longitude', lat='latitude',
|
| 79 |
hover_name='display_name',
|
| 80 |
color=labels,
|
| 81 |
+
zoom=9,
|
| 82 |
color_discrete_sequence=px.colors.qualitative.Dark24)
|
| 83 |
return fig
|
| 84 |
|