From ca3c4979f54d9bb1b9b83bf77ad2699395d3a60f Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Sun, 24 Jul 2016 21:15:21 +0100 Subject: [PATCH] Add a note about quoting keys in config.js --- public_html/config.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/public_html/config.js b/public_html/config.js index 3764210..339fb73 100644 --- a/public_html/config.js +++ b/public_html/config.js @@ -119,9 +119,17 @@ ChartBundleLayers = true; // Provide a Bing Maps API key here to enable the Bing imagery layer. // You can obtain a free key (with usage limits) at // https://www.bingmapsportal.com/ (you need a "basic key") +// +// Be sure to quote your key: +// BingMapsAPIKey = "your key here"; +// BingMapsAPIKey = null; // Provide a Mapzen API key here to enable the Mapzen vector tile layer. // You can obtain a free key at https://mapzen.com/developers/ // (you need a "vector tiles" key) +// +// Be sure to quote your key: +// MapzenAPIKey = "your key here"; +// MapzenAPIKey = null;