File size: 181 Bytes
22405ac
57f85d0
 
088de9e
2e235c3
9bb9371
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(1000, 2) / [50, 50] + [32.77, 96.79],
     columns=['lat', 'lon'])

st.map(df)