Skip to content

Commit

Permalink
Added page with realtime example
Browse files Browse the repository at this point in the history
  • Loading branch information
hansthen committed May 5, 2024
1 parent e52c075 commit 0d5b8af
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 2 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,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 0d5b8af

Please sign in to comment.