File size: 179 Bytes
22405ac
57f85d0
 
088de9e
2e235c3
cbc1713
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] + [32.77, -96.79],
     columns=['lat', 'lon'])

st.map(df)