from flask import Flask, render_template_string
app = Flask(__name__)
# HTML template with Google Hybrid as the default layer
html_template = """
GPS Location Map
Your Location on the Map
Loading map...
"""
@app.route("/")
def index():
return render_template_string(html_template)
if __name__ == "__main__":
app.run(debug=True)