File size: 183 Bytes
22405ac
57f85d0
 
088de9e
2e235c3
9c9fed0
2e235c3
57f85d0
 
1
2
3
4
5
6
7
8
9
import streamlit as st
import pandas as pd
import numpy as np

df = pd.DataFrame(
     np.random.randn(1, 1) / [50, 50] + [33.1032, -96.6706],
     columns=['lat', 'lon'])

st.map(df)