Spaces:
Sleeping
Sleeping
fschwartzer
commited on
Commit
•
02c8225
1
Parent(s):
059564b
Update app.py
Browse files
app.py
CHANGED
@@ -73,10 +73,18 @@ for index, row in data.iterrows():
|
|
73 |
# Calculate a zoom level based on the maximum distance
|
74 |
zoom_level = round(17 - np.log10(max_distance))
|
75 |
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
# Create a sidebar for controls
|
77 |
with st.sidebar:
|
78 |
-
st.title('avalia.se')
|
79 |
|
|
|
|
|
80 |
selected_coords = st.selectbox('Selecione o tipo de pesquisa', ['Ampla', 'Direcionada'])
|
81 |
|
82 |
if selected_coords == 'Direcionada':
|
|
|
73 |
# Calculate a zoom level based on the maximum distance
|
74 |
zoom_level = round(17 - np.log10(max_distance))
|
75 |
|
76 |
+
title_html = """
|
77 |
+
<span style='color: gray; font-size: 36px;'>aval</span>
|
78 |
+
<span style='color: black; font-size: 36px;'>ia</span>
|
79 |
+
<span style='color: gray; font-size: 36px;'>.NEXUS</span>
|
80 |
+
"""
|
81 |
+
|
82 |
# Create a sidebar for controls
|
83 |
with st.sidebar:
|
84 |
+
#st.title('avalia.se')
|
85 |
|
86 |
+
st.sidebar.markdown(title_html, unsafe_allow_html=True)
|
87 |
+
|
88 |
selected_coords = st.selectbox('Selecione o tipo de pesquisa', ['Ampla', 'Direcionada'])
|
89 |
|
90 |
if selected_coords == 'Direcionada':
|