From 8bdaf9e1325269f696cc24d4e4f412f4e8ddba23 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Mon, 7 Aug 2023 14:50:29 -0400 Subject: [PATCH] GoogleMaps by default --- owrx/controllers/template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owrx/controllers/template.py b/owrx/controllers/template.py index 4fbc82ec..c1155a2b 100644 --- a/owrx/controllers/template.py +++ b/owrx/controllers/template.py @@ -42,7 +42,7 @@ class IndexController(WebpageController): class MapController(WebpageController): def indexAction(self): # TODO check if we have a google maps api key first? - self.serve_template("map.html", **self.template_variables()) + self.serve_template("map-google.html", **self.template_variables()) class PolicyController(WebpageController):