import gradio as gr
import main
def get_tile(x=5,y=5,z=5):
url = f"""
"""
return url
iface = gr.Interface(fn=get_tile, # Not used here since the routing happens within Flask
inputs=["number","number","number"],
outputs=["html"],
title="OpenStreetMap Viewer",
description="A simple web app demonstrating rendering map tiles based on input coordinates.",
allow_flagging="never")
#iface.load("http://localhost:5000")
iface.queue().launch()