From fb402d120e8f2bd5036536f6cb3f1e4fd8f90fd9 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Fri, 13 May 2016 12:08:31 -0600 Subject: [PATCH] Removing access_token in notes for v3 use --- changelog/upgrade-notes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changelog/upgrade-notes.md b/changelog/upgrade-notes.md index 8261ec6b73..06e531e058 100644 --- a/changelog/upgrade-notes.md +++ b/changelog/upgrade-notes.md @@ -11,13 +11,13 @@ The `ol.source.TileUTFGrid` now uses XMLHttpRequest to load UTFGrid tiles by def ```js // To work with the v4 API var v4source = new ol.source.TileUTFGrid({ - url: 'http://api.tiles.mapbox.com/v4/example.json?access_token=' + YOUR_KEY_HERE + url: 'https://api.tiles.mapbox.com/v4/example.json?access_token=' + YOUR_KEY_HERE }); // To work with the v3 API var v3source = new ol.source.TileUTFGrid({ jsonp: true, // <--- this is required for v3 - url: 'http://api.tiles.mapbox.com/v3/example.json?access_token=' + YOUR_KEY_HERE + url: 'http://api.tiles.mapbox.com/v3/example.json' }); ```