Use https for services.arcgisonline.com
This commit is contained in:
@@ -5,7 +5,7 @@ goog.require('ol.layer.Image');
|
|||||||
goog.require('ol.source.OSM');
|
goog.require('ol.source.OSM');
|
||||||
goog.require('ol.source.ImageArcGISRest');
|
goog.require('ol.source.ImageArcGISRest');
|
||||||
|
|
||||||
var url = 'http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/' +
|
var url = 'https://sampleserver1.arcgisonline.com/ArcGIS/rest/services/' +
|
||||||
'Specialty/ESRI_StateCityHighway_USA/MapServer';
|
'Specialty/ESRI_StateCityHighway_USA/MapServer';
|
||||||
|
|
||||||
var layers = [
|
var layers = [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ goog.require('ol.layer.Tile');
|
|||||||
goog.require('ol.source.OSM');
|
goog.require('ol.source.OSM');
|
||||||
goog.require('ol.source.TileArcGISRest');
|
goog.require('ol.source.TileArcGISRest');
|
||||||
|
|
||||||
var url = 'http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/' +
|
var url = 'https://sampleserver1.arcgisonline.com/ArcGIS/rest/services/' +
|
||||||
'Specialty/ESRI_StateCityHighway_USA/MapServer';
|
'Specialty/ESRI_StateCityHighway_USA/MapServer';
|
||||||
|
|
||||||
var layers = [
|
var layers = [
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ var vector = new ol.layer.Vector({
|
|||||||
|
|
||||||
var raster = new ol.layer.Tile({
|
var raster = new ol.layer.Tile({
|
||||||
source: new ol.source.XYZ({
|
source: new ol.source.XYZ({
|
||||||
attributions: 'Tiles © <a href="http://services.arcgisonline.com/ArcGIS/' +
|
attributions: 'Tiles © <a href="https://services.arcgisonline.com/ArcGIS/' +
|
||||||
'rest/services/World_Topo_Map/MapServer">ArcGIS</a>',
|
'rest/services/World_Topo_Map/MapServer">ArcGIS</a>',
|
||||||
url: 'https://server.arcgisonline.com/ArcGIS/rest/services/' +
|
url: 'https://server.arcgisonline.com/ArcGIS/rest/services/' +
|
||||||
'World_Topo_Map/MapServer/tile/{z}/{y}/{x}'
|
'World_Topo_Map/MapServer/tile/{z}/{y}/{x}'
|
||||||
|
|||||||
@@ -97,7 +97,7 @@ var vector = new ol.layer.Vector({
|
|||||||
|
|
||||||
var raster = new ol.layer.Tile({
|
var raster = new ol.layer.Tile({
|
||||||
source: new ol.source.XYZ({
|
source: new ol.source.XYZ({
|
||||||
attributions: 'Tiles © <a href="http://services.arcgisonline.com/ArcGIS/' +
|
attributions: 'Tiles © <a href="https://services.arcgisonline.com/ArcGIS/' +
|
||||||
'rest/services/World_Topo_Map/MapServer">ArcGIS</a>',
|
'rest/services/World_Topo_Map/MapServer">ArcGIS</a>',
|
||||||
url: 'https://server.arcgisonline.com/ArcGIS/rest/services/' +
|
url: 'https://server.arcgisonline.com/ArcGIS/rest/services/' +
|
||||||
'World_Topo_Map/MapServer/tile/{z}/{y}/{x}'
|
'World_Topo_Map/MapServer/tile/{z}/{y}/{x}'
|
||||||
|
|||||||
+1
-1
@@ -29,7 +29,7 @@ var map = new ol.Map({
|
|||||||
new ol.layer.Tile({
|
new ol.layer.Tile({
|
||||||
opacity: 0.7,
|
opacity: 0.7,
|
||||||
source: new ol.source.WMTS({
|
source: new ol.source.WMTS({
|
||||||
attributions: 'Tiles © <a href="http://services.arcgisonline.com/arcgis/rest/' +
|
attributions: 'Tiles © <a href="https://services.arcgisonline.com/arcgis/rest/' +
|
||||||
'services/Demographics/USA_Population_Density/MapServer/">ArcGIS</a>',
|
'services/Demographics/USA_Population_Density/MapServer/">ArcGIS</a>',
|
||||||
url: 'https://services.arcgisonline.com/arcgis/rest/' +
|
url: 'https://services.arcgisonline.com/arcgis/rest/' +
|
||||||
'services/Demographics/USA_Population_Density/MapServer/WMTS/',
|
'services/Demographics/USA_Population_Density/MapServer/WMTS/',
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ var projection = ol.proj.get('EPSG:4326');
|
|||||||
// The tile size supported by the ArcGIS tile service.
|
// The tile size supported by the ArcGIS tile service.
|
||||||
var tileSize = 512;
|
var tileSize = 512;
|
||||||
|
|
||||||
var urlTemplate = 'http://services.arcgisonline.com/arcgis/rest/services/' +
|
var urlTemplate = 'https://services.arcgisonline.com/arcgis/rest/services/' +
|
||||||
'ESRI_Imagery_World_2D/MapServer/tile/{z}/{y}/{x}';
|
'ESRI_Imagery_World_2D/MapServer/tile/{z}/{y}/{x}';
|
||||||
|
|
||||||
var map = new ol.Map({
|
var map = new ol.Map({
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ goog.require('ol.source.XYZ');
|
|||||||
|
|
||||||
|
|
||||||
var attribution = new ol.Attribution({
|
var attribution = new ol.Attribution({
|
||||||
html: 'Tiles © <a href="http://services.arcgisonline.com/ArcGIS/' +
|
html: 'Tiles © <a href="https://services.arcgisonline.com/ArcGIS/' +
|
||||||
'rest/services/World_Topo_Map/MapServer">ArcGIS</a>'
|
'rest/services/World_Topo_Map/MapServer">ArcGIS</a>'
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
<ows:DCP>
|
<ows:DCP>
|
||||||
<ows:HTTP>
|
<ows:HTTP>
|
||||||
<ows:Get
|
<ows:Get
|
||||||
xlink:href="http://services.arcgisonline.com/arcgis/rest/services/Demographics/USA_Population_Density/MapServer/WMTS/1.0.0/WMTSCapabilities.xml">
|
xlink:href="https://services.arcgisonline.com/arcgis/rest/services/Demographics/USA_Population_Density/MapServer/WMTS/1.0.0/WMTSCapabilities.xml">
|
||||||
<ows:Constraint name="GetEncoding">
|
<ows:Constraint name="GetEncoding">
|
||||||
<ows:AllowedValues>
|
<ows:AllowedValues>
|
||||||
<ows:Value>RESTful</ows:Value>
|
<ows:Value>RESTful</ows:Value>
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
</ows:Get>
|
</ows:Get>
|
||||||
<!-- add KVP binding in 10.1 -->
|
<!-- add KVP binding in 10.1 -->
|
||||||
<ows:Get
|
<ows:Get
|
||||||
xlink:href="http://services.arcgisonline.com/arcgis/rest/services/Demographics/USA_Population_Density/MapServer/WMTS?">
|
xlink:href="https://services.arcgisonline.com/arcgis/rest/services/Demographics/USA_Population_Density/MapServer/WMTS?">
|
||||||
<ows:Constraint name="GetEncoding">
|
<ows:Constraint name="GetEncoding">
|
||||||
<ows:AllowedValues>
|
<ows:AllowedValues>
|
||||||
<ows:Value>KVP</ows:Value>
|
<ows:Value>KVP</ows:Value>
|
||||||
@@ -39,7 +39,7 @@
|
|||||||
<ows:DCP>
|
<ows:DCP>
|
||||||
<ows:HTTP>
|
<ows:HTTP>
|
||||||
<ows:Get
|
<ows:Get
|
||||||
xlink:href="http://services.arcgisonline.com/arcgis/rest/services/Demographics/USA_Population_Density/MapServer/WMTS/tile/1.0.0/">
|
xlink:href="https://services.arcgisonline.com/arcgis/rest/services/Demographics/USA_Population_Density/MapServer/WMTS/tile/1.0.0/">
|
||||||
<ows:Constraint name="GetEncoding">
|
<ows:Constraint name="GetEncoding">
|
||||||
<ows:AllowedValues>
|
<ows:AllowedValues>
|
||||||
<ows:Value>RESTful</ows:Value>
|
<ows:Value>RESTful</ows:Value>
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
</ows:Constraint>
|
</ows:Constraint>
|
||||||
</ows:Get>
|
</ows:Get>
|
||||||
<ows:Get
|
<ows:Get
|
||||||
xlink:href="http://services.arcgisonline.com/arcgis/rest/services/Demographics/USA_Population_Density/MapServer/WMTS?">
|
xlink:href="https://services.arcgisonline.com/arcgis/rest/services/Demographics/USA_Population_Density/MapServer/WMTS?">
|
||||||
<ows:Constraint name="GetEncoding">
|
<ows:Constraint name="GetEncoding">
|
||||||
<ows:AllowedValues>
|
<ows:AllowedValues>
|
||||||
<ows:Value>KVP</ows:Value>
|
<ows:Value>KVP</ows:Value>
|
||||||
@@ -84,7 +84,7 @@
|
|||||||
<TileMatrixSet>GoogleMapsCompatible</TileMatrixSet>
|
<TileMatrixSet>GoogleMapsCompatible</TileMatrixSet>
|
||||||
</TileMatrixSetLink>
|
</TileMatrixSetLink>
|
||||||
<ResourceURL format="image/png" resourceType="tile"
|
<ResourceURL format="image/png" resourceType="tile"
|
||||||
template="http://services.arcgisonline.com/arcgis/rest/services/Demographics/USA_Population_Density/MapServer/WMTS/tile/1.0.0/Demographics_USA_Population_Density/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.png"
|
template="https://services.arcgisonline.com/arcgis/rest/services/Demographics/USA_Population_Density/MapServer/WMTS/tile/1.0.0/Demographics_USA_Population_Density/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.png"
|
||||||
/>
|
/>
|
||||||
</Layer>
|
</Layer>
|
||||||
<!--TileMatrixSet-->
|
<!--TileMatrixSet-->
|
||||||
@@ -403,6 +403,6 @@
|
|||||||
</TileMatrixSet>
|
</TileMatrixSet>
|
||||||
</Contents>
|
</Contents>
|
||||||
<ServiceMetadataURL
|
<ServiceMetadataURL
|
||||||
xlink:href="http://services.arcgisonline.com/arcgis/rest/services/Demographics/USA_Population_Density/MapServer/WMTS/1.0.0/WMTSCapabilities.xml"
|
xlink:href="https://services.arcgisonline.com/arcgis/rest/services/Demographics/USA_Population_Density/MapServer/WMTS/1.0.0/WMTSCapabilities.xml"
|
||||||
/>
|
/>
|
||||||
</Capabilities>
|
</Capabilities>
|
||||||
|
|||||||
@@ -176,7 +176,7 @@ describe('ol.source.WMTS', function() {
|
|||||||
expect(options.urls).to.be.an('array');
|
expect(options.urls).to.be.an('array');
|
||||||
expect(options.urls).to.have.length(1);
|
expect(options.urls).to.have.length(1);
|
||||||
expect(options.urls[0]).to.be.eql(
|
expect(options.urls[0]).to.be.eql(
|
||||||
'http://services.arcgisonline.com/arcgis/rest/services/' +
|
'https://services.arcgisonline.com/arcgis/rest/services/' +
|
||||||
'Demographics/USA_Population_Density/MapServer/WMTS?');
|
'Demographics/USA_Population_Density/MapServer/WMTS?');
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -191,7 +191,7 @@ describe('ol.source.WMTS', function() {
|
|||||||
expect(options.urls).to.be.an('array');
|
expect(options.urls).to.be.an('array');
|
||||||
expect(options.urls).to.have.length(1);
|
expect(options.urls).to.have.length(1);
|
||||||
expect(options.urls[0]).to.be.eql(
|
expect(options.urls[0]).to.be.eql(
|
||||||
'http://services.arcgisonline.com/arcgis/rest/services/' +
|
'https://services.arcgisonline.com/arcgis/rest/services/' +
|
||||||
'Demographics/USA_Population_Density/MapServer/WMTS/' +
|
'Demographics/USA_Population_Density/MapServer/WMTS/' +
|
||||||
'tile/1.0.0/Demographics_USA_Population_Density/' +
|
'tile/1.0.0/Demographics_USA_Population_Density/' +
|
||||||
'{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.png');
|
'{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.png');
|
||||||
|
|||||||
Reference in New Issue
Block a user