Migrated WebWW map services to HTTPS, per #66

This commit is contained in:
pdavidc 2016-12-23 15:13:56 -08:00
parent eccd32750f
commit e5331bb7cb
7 changed files with 7 additions and 7 deletions

View File

@ -34,7 +34,7 @@ define([
this.maxElevation = 8850; // Height of Mt. Everest
this.pixelIsPoint = false; // World Wind WMS elevation layers return pixel-as-area images
this.urlBuilder = new WmsUrlBuilder("http://worldwind26.arc.nasa.gov/elev",
this.urlBuilder = new WmsUrlBuilder("https://worldwind26.arc.nasa.gov/elev",
"GEBCO,aster_v2,USGS-NED", "", "1.3.0");
};

View File

@ -33,7 +33,7 @@ define([
this.maxElevation = 8850; // Height of Mt. Everest
this.pixelIsPoint = false; // World Wind WMS elevation layers return pixel-as-area images
this.urlBuilder = new WcsTileUrlBuilder(location.protocol + "//worldwind26.arc.nasa.gov/wms2",
this.urlBuilder = new WcsTileUrlBuilder("https://worldwind26.arc.nasa.gov/wms2",
"NASA_SRTM30_900m_Tiled", "1.0.0");
};

View File

@ -32,7 +32,7 @@ define([
this.displayName = "Blue Marble & Landsat";
this.pickEnabled = false;
this.urlBuilder = new WmsUrlBuilder(location.protocol + "//worldwind25.arc.nasa.gov/wms",
this.urlBuilder = new WmsUrlBuilder("https://worldwind25.arc.nasa.gov/wms",
"BlueMarble-200405,esat", "", "1.3.0");
};

View File

@ -35,7 +35,7 @@ define([
this.displayName = "Blue Marble";
this.pickEnabled = false;
this.urlBuilder = new WmsUrlBuilder(location.protocol + "//worldwind25.arc.nasa.gov/wms",
this.urlBuilder = new WmsUrlBuilder("https://worldwind25.arc.nasa.gov/wms",
layerName || "BlueMarble-200405", "", "1.3.0");
};

View File

@ -27,7 +27,7 @@ define([
this.pickEnabled = false;
this.maxActiveAltitude = 10e3;
this.urlBuilder = new WmsUrlBuilder(location.protocol + "//worldwind27.arc.nasa.gov/wms/virtualearth", "ve", "", "1.3.0");
this.urlBuilder = new WmsUrlBuilder("https://worldwind27.arc.nasa.gov/wms/virtualearth", "ve", "", "1.3.0");
};
BingWMSLayer.prototype = Object.create(TiledImageLayer.prototype);

View File

@ -69,7 +69,7 @@ define([
if (!this.metadataRetrievalInProcess) {
this.metadataRetrievalInProcess = true;
var url = "http://dev.virtualearth.net/REST/V1/Imagery/Metadata/" + this.imagerySet + "/0,0?zl=1&key="
var url = "https://dev.virtualearth.net/REST/V1/Imagery/Metadata/" + this.imagerySet + "/0,0?zl=1&key="
+ this.bingMapsKey;
// Use JSONP to request the metadata. Can't use XmlHTTPRequest because the virtual earth server doesn't

View File

@ -24,7 +24,7 @@ define([
* @type {String}
* @default http://open.mapquestapi.com/nominatim/v1/search/
*/
this.service = "http://open.mapquestapi.com/nominatim/v1/search/";
this.service = "https://open.mapquestapi.com/nominatim/v1/search/";
};
/**