williambr's picture
Update app.py
8459b0d
raw
history blame
433 Bytes
import streamlit as st
import pandas as pd
import numpy as np
st.title('Plot and track your vacations')
city_name = st.text_input('Please Input your Desired City:')
lat = st.text_input('Please Input the Latitude:' )
long = st.text_input('Please Input the Longitude:' )
cities_list = []
lat_list = []
long_list = []
places = pd.DataFrame({'City:' cities_list, 'Latitude:' lat_list, 'Longitude:' long_list)})
st.map(places)