Update app.py
Browse files
app.py
CHANGED
|
@@ -96,8 +96,8 @@ layer = pdk.Layer(
|
|
| 96 |
)
|
| 97 |
|
| 98 |
view_state = pdk.ViewState(
|
| 99 |
-
latitude=filtered_df["
|
| 100 |
-
longitude=filtered_df["
|
| 101 |
zoom=10,
|
| 102 |
pitch=40
|
| 103 |
)
|
|
|
|
| 96 |
)
|
| 97 |
|
| 98 |
view_state = pdk.ViewState(
|
| 99 |
+
latitude=filtered_df["Location_Latitude__c"].mean(),
|
| 100 |
+
longitude=filtered_df["Location_Longitude__c"].mean(),
|
| 101 |
zoom=10,
|
| 102 |
pitch=40
|
| 103 |
)
|