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