import streamlit as st import requests from streamlit_lottie import st_lottie import pandas as pd st.title('Plot and track your vacations!') # Loads animation of the Earth def load_lottie_url(url: str): r = requests.get(url) if r.status_code != 200: return None return r.json() def ShowAnimation(name, URL): anim=load_lottie_url(URL) st_lottie(anim, key = name) ShowAnimation("Badge1","https://assets2.lottiefiles.com/packages/lf20_jte9hafx.json") #Loads Background Image def add_bg_from_url(): st.markdown( f""" """, unsafe_allow_html=True ) add_bg_from_url() city_name = st.text_input('Please Input your Desired City:') int(lat) = st.text_input('Please Input the Latitude:' ) int (long) = st.text_input('Please Input the Longitude:' ) places_seen = pd.DataFrame({ 'cities' : ["Boston", city_name], 'lat' : [42.361145, lat] ,'lon' : [-71.057083, long]}) st.map(places_seen)