Spaces:
Runtime error
Runtime error
File size: 514 Bytes
afc9357 0de23fa 8459b0d 0de23fa c2f98a8 0de23fa c2f98a8 0de23fa c2f98a8 0de23fa f7f4eb2 0de23fa afc9357 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
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 = []
cities_list.append(city_name)
lat_list = []
lat_list.append(lat)
long_list = []
long_list.append(long)
places = pd.DataFrame({'City:' : cities_list, 'latitude:' : lat_list, 'longitude:' : long_list})
st.map(places)
|