Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -117,7 +117,9 @@ if st.button("Get Restaurants"):
|
|
| 117 |
location_value = location['value']
|
| 118 |
result, iframe, pre_agg, vectorQuery = get_restaurants(search, location_value, meters)
|
| 119 |
if result:
|
| 120 |
-
|
| 121 |
st.markdown(iframe, unsafe_allow_html=True)
|
|
|
|
| 122 |
st.code(pre_agg)
|
|
|
|
| 123 |
st.code(vectorQuery)
|
|
|
|
| 117 |
location_value = location['value']
|
| 118 |
result, iframe, pre_agg, vectorQuery = get_restaurants(search, location_value, meters)
|
| 119 |
if result:
|
| 120 |
+
st.subheader("Map")
|
| 121 |
st.markdown(iframe, unsafe_allow_html=True)
|
| 122 |
+
st.subheader("Geo pre aggregation")
|
| 123 |
st.code(pre_agg)
|
| 124 |
+
st.subheader("Vector query")
|
| 125 |
st.code(vectorQuery)
|