Fix: Clean up map_iframe_single.html, remove debug overlay, ensure clean map rendering.
This commit is contained in:
@@ -24,6 +24,18 @@ def health_check():
|
||||
"""Health check endpoint"""
|
||||
return {'status': 'healthy', 'timestamp': datetime.utcnow().isoformat()}
|
||||
|
||||
@main.route('/map-test')
|
||||
def map_test():
|
||||
"""Serve the map test page"""
|
||||
from flask import send_from_directory
|
||||
return send_from_directory('static', 'map_test.html')
|
||||
|
||||
@main.route('/basic-map-test')
|
||||
def basic_map_test():
|
||||
"""Serve the basic map test page"""
|
||||
from flask import send_from_directory
|
||||
return send_from_directory('static', 'basic_map_test.html')
|
||||
|
||||
@main.app_errorhandler(404)
|
||||
def not_found_error(error):
|
||||
return render_template('errors/404.html'), 404
|
||||
|
||||
Reference in New Issue
Block a user