Skip to content

Commit d198035

Browse files
committed
v1.17.1
2 parents f25f041 + 6829f6f commit d198035

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

dist/angular-openlayers-directive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1423,7 +1423,7 @@ angular.module('openlayers-directive').factory('olHelpers', ["$q", "$log", "$htt
14231423
$log.error('[AngularJS - Openlayers] - MapBox layer requires the map id and the access token');
14241424
return;
14251425
}
1426-
url = 'http://api.tiles.mapbox.com/v4/' + source.mapId + '/{z}/{x}/{y}.png?access_token=' +
1426+
url = 'https://api.tiles.mapbox.com/v4/' + source.mapId + '/{z}/{x}/{y}.png?access_token=' +
14271427
source.accessToken;
14281428

14291429
pixelRatio = window.devicePixelRatio;

dist/angular-openlayers-directive.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-openlayers-directive.min.no-header.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-openlayers-directive.pre.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1423,7 +1423,7 @@ angular.module('openlayers-directive').factory('olHelpers', function($q, $log, $
14231423
$log.error('[AngularJS - Openlayers] - MapBox layer requires the map id and the access token');
14241424
return;
14251425
}
1426-
url = 'http://api.tiles.mapbox.com/v4/' + source.mapId + '/{z}/{x}/{y}.png?access_token=' +
1426+
url = 'https://api.tiles.mapbox.com/v4/' + source.mapId + '/{z}/{x}/{y}.png?access_token=' +
14271427
source.accessToken;
14281428

14291429
pixelRatio = window.devicePixelRatio;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@
6565
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
6666
},
6767
"main": "dist/angular-openlayers-directive",
68-
"version": "1.17.0"
68+
"version": "1.17.1"
6969
}

src/services/olHelpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ angular.module('openlayers-directive').factory('olHelpers', function($q, $log, $
203203
$log.error('[AngularJS - Openlayers] - MapBox layer requires the map id and the access token');
204204
return;
205205
}
206-
url = 'http://api.tiles.mapbox.com/v4/' + source.mapId + '/{z}/{x}/{y}.png?access_token=' +
206+
url = 'https://api.tiles.mapbox.com/v4/' + source.mapId + '/{z}/{x}/{y}.png?access_token=' +
207207
source.accessToken;
208208

209209
pixelRatio = window.devicePixelRatio;

0 commit comments

Comments
 (0)