Skip to content

Commit

Permalink
fix(olHelpers.js): use HTTPS Esri URL (#387)
Browse files Browse the repository at this point in the history
This addresses issue #386. It is a one-character change, changing the protocol from http to https.
  • Loading branch information
mfilotto authored and juristr committed Nov 7, 2017
1 parent 33008fe commit 2411220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/olHelpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ angular.module('openlayers-directive').factory('olHelpers', function($q, $log, $
return;
}

var _urlBase = 'http://services.arcgisonline.com/ArcGIS/rest/services/';
var _urlBase = 'https://services.arcgisonline.com/ArcGIS/rest/services/';
var _url = _urlBase + source.layer + '/MapServer/tile/{z}/{y}/{x}';

oSource = new ol.source.XYZ({
Expand Down

0 comments on commit 2411220

Please sign in to comment.