Map / app.py
MadhuV28's picture
Update app.py
cbc1713
raw
history blame
179 Bytes
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)