浏览代码

Move Google Maps API key into settings
Resolves #101

Scot Hacker 8 年之前
父节点
当前提交
4a666b44c9
共有 3 个文件被更改,包括 5 次插入3 次删除
  1. 1 0
      bakerydemo/locations/models.py
  2. 3 2
      bakerydemo/settings/base.py
  3. 1 1
      bakerydemo/templates/locations/location_page.html

+ 1 - 0
bakerydemo/locations/models.py

@@ -154,6 +154,7 @@ class LocationPage(BasePageFieldsMixin, Page):
         context = super(LocationPage, self).get_context(request)
         context['lat'] = self.lat_long.split(",")[0]
         context['long'] = self.lat_long.split(",")[1]
+        context['google_map_api_key'] = settings.GOOGLE_MAP_API_KEY
         return context
 
     parent_page_types = ['LocationsIndexPage']

+ 3 - 2
bakerydemo/settings/base.py

@@ -162,6 +162,9 @@ STATIC_URL = '/static/'
 MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
 MEDIA_URL = '/media/'
 
+# Override in local settings or replace with your own key. Please don't use our demo key in production!
+GOOGLE_MAP_API_KEY = 'AIzaSyD31CT9P9KxvNUJOwDq2kcFEIG8ADgaFgw'
+
 # Use Elasticsearch as the search backend for extra performance and better search results
 WAGTAILSEARCH_BACKENDS = {
     'default': {
@@ -170,7 +173,5 @@ WAGTAILSEARCH_BACKENDS = {
     },
 }
 
-
 # Wagtail settings
-
 WAGTAIL_SITE_NAME = "bakerydemo"

+ 1 - 1
bakerydemo/templates/locations/location_page.html

@@ -106,6 +106,6 @@
         });
         }
     </script>
-    <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD31CT9P9KxvNUJOwDq2kcFEIG8ADgaFgw&callback=initMap" async defer></script>
+    <script src="https://maps.googleapis.com/maps/api/js?key={{ google_map_api_key }}&callback=initMap" async defer></script>
 
 {% endblock content %}