Spaces:
Runtime error
Runtime error
File size: 1,270 Bytes
becb943 a238205 7588b34 e9398a5 7588b34 e4de63b 7588b34 e4de63b 0f061d3 a0877a6 0f061d3 0de23fa e4de63b c8253ad e4de63b 727ac3e c8253ad e4de63b 727ac3e c8253ad 0de23fa 9201791 1983fa9 9201791 1983fa9 9201791 1983fa9 9201791 |
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
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"""
<style>
.stApp {{
background-image: url("https://static.vecteezy.com/system/resources/thumbnails/000/201/219/small/Beach_Vacation.jpg");
background-attachment: fixed;
background-size: cover
}}
</style>
""",
unsafe_allow_html=True
)
add_bg_from_url()
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:' )
places_seen = pd.DataFrame({
'cities' : ["Boston", city_name],
'lat' : [42.361145, int(lat)]
,'lon' : [-71.057083, int(long)]})
st.map(places_seen)
|