From bcb06247860e0b3650dceeb4840bf328e4e22045 Mon Sep 17 00:00:00 2001 From: W1CDN Date: Mon, 15 Jan 2024 10:17:02 -0600 Subject: [PATCH] Stub out map. --- api_app.py | 4 ++++ aprs_tool.code-workspace | 7 +++++++ templates/map.html | 23 +++++++++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 aprs_tool.code-workspace create mode 100644 templates/map.html diff --git a/api_app.py b/api_app.py index f9adff1..4769f8d 100644 --- a/api_app.py +++ b/api_app.py @@ -120,6 +120,10 @@ def index(): frames = frames, stations = stations) +@api_app.route('/map') +def map(): + return render_template('map.html') + class Packets(Resource): def get(self): # Handle arguments that may or may not exist diff --git a/aprs_tool.code-workspace b/aprs_tool.code-workspace new file mode 100644 index 0000000..362d7c2 --- /dev/null +++ b/aprs_tool.code-workspace @@ -0,0 +1,7 @@ +{ + "folders": [ + { + "path": "." + } + ] +} \ No newline at end of file diff --git a/templates/map.html b/templates/map.html new file mode 100644 index 0000000..824ddbd --- /dev/null +++ b/templates/map.html @@ -0,0 +1,23 @@ + + + + + + + + + +
+ + + + \ No newline at end of file