-
-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update run_tests_each_PR.yml * Added page with realtime example * Dummy change to retrigger actions
- Loading branch information
Showing
2 changed files
with
96 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
import folium | ||
import streamlit as st | ||
from folium.plugins import Realtime | ||
|
||
from streamlit_folium import st_folium | ||
|
||
""" | ||
# streamlit-folium: Realtime Support | ||
streamlit-folium supports the Realtime plugin, which can pull geo data | ||
periodically from a datasource. The example below shows a map that | ||
displays the current location of the International Space Station. | ||
Since Realtime fetches data from an external source the actual | ||
contents of the data is unknown when creating the map. If you want | ||
to react to map events, such as clicking on a Feature, you can pass | ||
a `JsCode` object to the plugin. | ||
Inside the `JsCode` object you have access to the Streamlit object, | ||
which allows you to set a return value for your Streamlit app. | ||
""" | ||
|
||
m = folium.Map() | ||
source = folium.JsCode( | ||
""" | ||
function(responseHandler, errorHandler) { | ||
var url = 'https://api.wheretheiss.at/v1/satellites/25544'; | ||
fetch(url) | ||
.then((response) => { | ||
return response.json().then((data) => { | ||
var { id, timestamp, longitude, latitude } = data; | ||
return { | ||
'type': 'FeatureCollection', | ||
'features': [{ | ||
'type': 'Feature', | ||
'geometry': { | ||
'type': 'Point', | ||
'coordinates': [longitude, latitude] | ||
}, | ||
'properties': { | ||
'id': id, | ||
'timestamp': timestamp | ||
} | ||
}] | ||
}; | ||
}) | ||
}) | ||
.then(responseHandler) | ||
.catch(errorHandler); | ||
} | ||
""" | ||
) | ||
|
||
on_each_feature = folium.JsCode( | ||
""" | ||
(feature, layer) => { | ||
layer.bindTooltip(`${feature.properties.timestamp}`); | ||
layer.on("click", (event) => { | ||
Streamlit.setComponentValue({ | ||
id: feature.properties.id, | ||
// Be careful, on_each_feature binds only once. | ||
// You need to extract the current location from | ||
// the event. | ||
location: event.sourceTarget.feature.geometry | ||
}); | ||
}); | ||
} | ||
""" | ||
) | ||
|
||
update_feature = folium.JsCode( | ||
""" | ||
(feature, layer) => { | ||
L.Realtime.prototype.options.updateFeature(feature, layer); | ||
if(layer) { | ||
layer.unbindTooltip(); | ||
layer.bindTooltip(`${feature.properties.timestamp}`); | ||
} | ||
} | ||
""" | ||
) | ||
|
||
Realtime( | ||
source, | ||
on_each_feature=on_each_feature, | ||
update_feature=update_feature, | ||
interval=10000, | ||
).add_to(m) | ||
|
||
data = st_folium(m, returned_objects=[], debug=False) | ||
|
||
st.write(data) |