Skip to content

Commit

Permalink
Add realtime example (#187)
Browse files Browse the repository at this point in the history
* Update run_tests_each_PR.yml

* Added page with realtime example

* Dummy change to retrigger actions
  • Loading branch information
hansthen authored May 7, 2024
1 parent fe0f227 commit 93a0ec9
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# streamlit-folium: geospatial made easy in Streamlit!


![Run tests each PR](https://github.com/randyzwitch/streamlit-folium/workflows/Run%20tests%20each%20PR/badge.svg)

[![Open in Streamlit](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://share.streamlit.io/randyzwitch/streamlit-folium/examples/streamlit_app.py)
Expand Down Expand Up @@ -32,4 +33,3 @@ Currently, there are two functions defined:
![streamlit_folium example](https://raw.githubusercontent.com/randyzwitch/streamlit-folium/master/tests/visual_baseline/test_basic/first_test/baseline.png)



95 changes: 95 additions & 0 deletions examples/pages/realtime.py
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)

0 comments on commit 93a0ec9

Please sign in to comment.