1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243 |
- import Cartesian2 from "../Core/Cartesian2.js";
- import Cartesian3 from "../Core/Cartesian3.js";
- import Cartographic from "../Core/Cartographic.js";
- import combine from "../Core/combine.js";
- import Credit from "../Core/Credit.js";
- import defaultValue from "../Core/defaultValue.js";
- import defined from "../Core/defined.js";
- import DeveloperError from "../Core/DeveloperError.js";
- import Event from "../Core/Event.js";
- import GeographicProjection from "../Core/GeographicProjection.js";
- import CesiumMath from "../Core/Math.js";
- import Rectangle from "../Core/Rectangle.js";
- import Resource from "../Core/Resource.js";
- import WebMercatorTilingScheme from "../Core/WebMercatorTilingScheme.js";
- import when from "../ThirdParty/when.js";
- import ImageryProvider from "./ImageryProvider.js";
- var templateRegex = /{[^}]+}/g;
- var tags = {
- x: xTag,
- y: yTag,
- z: zTag,
- s: sTag,
- reverseX: reverseXTag,
- reverseY: reverseYTag,
- reverseZ: reverseZTag,
- westDegrees: westDegreesTag,
- southDegrees: southDegreesTag,
- eastDegrees: eastDegreesTag,
- northDegrees: northDegreesTag,
- westProjected: westProjectedTag,
- southProjected: southProjectedTag,
- eastProjected: eastProjectedTag,
- northProjected: northProjectedTag,
- width: widthTag,
- height: heightTag,
- };
- var pickFeaturesTags = combine(tags, {
- i: iTag,
- j: jTag,
- reverseI: reverseITag,
- reverseJ: reverseJTag,
- longitudeDegrees: longitudeDegreesTag,
- latitudeDegrees: latitudeDegreesTag,
- longitudeProjected: longitudeProjectedTag,
- latitudeProjected: latitudeProjectedTag,
- format: formatTag,
- });
- function UrlTemplateImageryProvider(options) {
-
- if (!defined(options)) {
- throw new DeveloperError("options is required.");
- }
- if (!when.isPromise(options) && !defined(options.url)) {
- throw new DeveloperError("options is required.");
- }
-
- this._errorEvent = new Event();
- this._resource = undefined;
- this._urlSchemeZeroPadding = undefined;
- this._pickFeaturesResource = undefined;
- this._tileWidth = undefined;
- this._tileHeight = undefined;
- this._maximumLevel = undefined;
- this._minimumLevel = undefined;
- this._tilingScheme = undefined;
- this._rectangle = undefined;
- this._tileDiscardPolicy = undefined;
- this._credit = undefined;
- this._hasAlphaChannel = undefined;
- this._readyPromise = undefined;
- this._tags = undefined;
- this._pickFeaturesTags = undefined;
-
- this.defaultAlpha = undefined;
-
- this.defaultNightAlpha = undefined;
-
- this.defaultDayAlpha = undefined;
-
- this.defaultBrightness = undefined;
-
- this.defaultContrast = undefined;
-
- this.defaultHue = undefined;
-
- this.defaultSaturation = undefined;
-
- this.defaultGamma = undefined;
-
- this.defaultMinificationFilter = undefined;
-
- this.defaultMagnificationFilter = undefined;
-
- this.enablePickFeatures = true;
- this.reinitialize(options);
- }
- Object.defineProperties(UrlTemplateImageryProvider.prototype, {
-
- url: {
- get: function () {
- return this._resource.url;
- },
- },
-
- urlSchemeZeroPadding: {
- get: function () {
- return this._urlSchemeZeroPadding;
- },
- },
-
- pickFeaturesUrl: {
- get: function () {
- return this._pickFeaturesResource.url;
- },
- },
-
- proxy: {
- get: function () {
- return this._resource.proxy;
- },
- },
-
- tileWidth: {
- get: function () {
-
- if (!this.ready) {
- throw new DeveloperError(
- "tileWidth must not be called before the imagery provider is ready."
- );
- }
-
- return this._tileWidth;
- },
- },
-
- tileHeight: {
- get: function () {
-
- if (!this.ready) {
- throw new DeveloperError(
- "tileHeight must not be called before the imagery provider is ready."
- );
- }
-
- return this._tileHeight;
- },
- },
-
- maximumLevel: {
- get: function () {
-
- if (!this.ready) {
- throw new DeveloperError(
- "maximumLevel must not be called before the imagery provider is ready."
- );
- }
-
- return this._maximumLevel;
- },
- },
-
- minimumLevel: {
- get: function () {
-
- if (!this.ready) {
- throw new DeveloperError(
- "minimumLevel must not be called before the imagery provider is ready."
- );
- }
-
- return this._minimumLevel;
- },
- },
-
- tilingScheme: {
- get: function () {
-
- if (!this.ready) {
- throw new DeveloperError(
- "tilingScheme must not be called before the imagery provider is ready."
- );
- }
-
- return this._tilingScheme;
- },
- },
-
- rectangle: {
- get: function () {
-
- if (!this.ready) {
- throw new DeveloperError(
- "rectangle must not be called before the imagery provider is ready."
- );
- }
-
- return this._rectangle;
- },
- },
-
- tileDiscardPolicy: {
- get: function () {
-
- if (!this.ready) {
- throw new DeveloperError(
- "tileDiscardPolicy must not be called before the imagery provider is ready."
- );
- }
-
- return this._tileDiscardPolicy;
- },
- },
-
- errorEvent: {
- get: function () {
- return this._errorEvent;
- },
- },
-
- ready: {
- get: function () {
- return defined(this._resource);
- },
- },
-
- readyPromise: {
- get: function () {
- return this._readyPromise;
- },
- },
-
- credit: {
- get: function () {
-
- if (!this.ready) {
- throw new DeveloperError(
- "credit must not be called before the imagery provider is ready."
- );
- }
-
- return this._credit;
- },
- },
-
- hasAlphaChannel: {
- get: function () {
-
- if (!this.ready) {
- throw new DeveloperError(
- "hasAlphaChannel must not be called before the imagery provider is ready."
- );
- }
-
- return this._hasAlphaChannel;
- },
- },
- });
- UrlTemplateImageryProvider.prototype.reinitialize = function (options) {
- var that = this;
- that._readyPromise = when(options).then(function (properties) {
-
- if (!defined(properties)) {
- throw new DeveloperError("options is required.");
- }
- if (!defined(properties.url)) {
- throw new DeveloperError("options.url is required.");
- }
-
- var customTags = properties.customTags;
- var allTags = combine(tags, customTags);
- var allPickFeaturesTags = combine(pickFeaturesTags, customTags);
- var resource = Resource.createIfNeeded(properties.url);
- var pickFeaturesResource = Resource.createIfNeeded(
- properties.pickFeaturesUrl
- );
- that.enablePickFeatures = defaultValue(
- properties.enablePickFeatures,
- that.enablePickFeatures
- );
- that._urlSchemeZeroPadding = defaultValue(
- properties.urlSchemeZeroPadding,
- that.urlSchemeZeroPadding
- );
- that._tileDiscardPolicy = properties.tileDiscardPolicy;
- that._getFeatureInfoFormats = properties.getFeatureInfoFormats;
- that._subdomains = properties.subdomains;
- if (Array.isArray(that._subdomains)) {
- that._subdomains = that._subdomains.slice();
- } else if (defined(that._subdomains) && that._subdomains.length > 0) {
- that._subdomains = that._subdomains.split("");
- } else {
- that._subdomains = ["a", "b", "c"];
- }
- that._tileWidth = defaultValue(properties.tileWidth, 256);
- that._tileHeight = defaultValue(properties.tileHeight, 256);
- that._minimumLevel = defaultValue(properties.minimumLevel, 0);
- that._maximumLevel = properties.maximumLevel;
- that._tilingScheme = defaultValue(
- properties.tilingScheme,
- new WebMercatorTilingScheme({ ellipsoid: properties.ellipsoid })
- );
- that._rectangle = defaultValue(
- properties.rectangle,
- that._tilingScheme.rectangle
- );
- that._rectangle = Rectangle.intersection(
- that._rectangle,
- that._tilingScheme.rectangle
- );
- that._hasAlphaChannel = defaultValue(properties.hasAlphaChannel, true);
- var credit = properties.credit;
- if (typeof credit === "string") {
- credit = new Credit(credit);
- }
- that._credit = credit;
- that._resource = resource;
- that._tags = allTags;
- that._pickFeaturesResource = pickFeaturesResource;
- that._pickFeaturesTags = allPickFeaturesTags;
- return true;
- });
- };
- UrlTemplateImageryProvider.prototype.getTileCredits = function (x, y, level) {
-
- if (!this.ready) {
- throw new DeveloperError(
- "getTileCredits must not be called before the imagery provider is ready."
- );
- }
-
- return undefined;
- };
- UrlTemplateImageryProvider.prototype.requestImage = function (
- x,
- y,
- level,
- request
- ) {
-
- if (!this.ready) {
- throw new DeveloperError(
- "requestImage must not be called before the imagery provider is ready."
- );
- }
-
- return ImageryProvider.loadImage(
- this,
- buildImageResource(this, x, y, level, request)
- );
- };
- UrlTemplateImageryProvider.prototype.pickFeatures = function (
- x,
- y,
- level,
- longitude,
- latitude
- ) {
-
- if (!this.ready) {
- throw new DeveloperError(
- "pickFeatures must not be called before the imagery provider is ready."
- );
- }
-
- if (
- !this.enablePickFeatures ||
- !defined(this._pickFeaturesResource) ||
- this._getFeatureInfoFormats.length === 0
- ) {
- return undefined;
- }
- var formatIndex = 0;
- var that = this;
- function handleResponse(format, data) {
- return format.callback(data);
- }
- function doRequest() {
- if (formatIndex >= that._getFeatureInfoFormats.length) {
-
- return when([]);
- }
- var format = that._getFeatureInfoFormats[formatIndex];
- var resource = buildPickFeaturesResource(
- that,
- x,
- y,
- level,
- longitude,
- latitude,
- format.format
- );
- ++formatIndex;
- if (format.type === "json") {
- return resource.fetchJson().then(format.callback).otherwise(doRequest);
- } else if (format.type === "xml") {
- return resource.fetchXML().then(format.callback).otherwise(doRequest);
- } else if (format.type === "text" || format.type === "html") {
- return resource.fetchText().then(format.callback).otherwise(doRequest);
- }
- return resource
- .fetch({
- responseType: format.format,
- })
- .then(handleResponse.bind(undefined, format))
- .otherwise(doRequest);
- }
- return doRequest();
- };
- var degreesScratchComputed = false;
- var degreesScratch = new Rectangle();
- var projectedScratchComputed = false;
- var projectedScratch = new Rectangle();
- function buildImageResource(imageryProvider, x, y, level, request) {
- degreesScratchComputed = false;
- projectedScratchComputed = false;
- var resource = imageryProvider._resource;
- var url = resource.getUrlComponent(true);
- var allTags = imageryProvider._tags;
- var templateValues = {};
- var match = url.match(templateRegex);
- if (defined(match)) {
- match.forEach(function (tag) {
- var key = tag.substring(1, tag.length - 1);
- if (defined(allTags[key])) {
- templateValues[key] = allTags[key](imageryProvider, x, y, level);
- }
- });
- }
- return resource.getDerivedResource({
- request: request,
- templateValues: templateValues,
- });
- }
- var ijScratchComputed = false;
- var ijScratch = new Cartesian2();
- var longitudeLatitudeProjectedScratchComputed = false;
- function buildPickFeaturesResource(
- imageryProvider,
- x,
- y,
- level,
- longitude,
- latitude,
- format
- ) {
- degreesScratchComputed = false;
- projectedScratchComputed = false;
- ijScratchComputed = false;
- longitudeLatitudeProjectedScratchComputed = false;
- var resource = imageryProvider._pickFeaturesResource;
- var url = resource.getUrlComponent(true);
- var allTags = imageryProvider._pickFeaturesTags;
- var templateValues = {};
- var match = url.match(templateRegex);
- if (defined(match)) {
- match.forEach(function (tag) {
- var key = tag.substring(1, tag.length - 1);
- if (defined(allTags[key])) {
- templateValues[key] = allTags[key](
- imageryProvider,
- x,
- y,
- level,
- longitude,
- latitude,
- format
- );
- }
- });
- }
- return resource.getDerivedResource({
- templateValues: templateValues,
- });
- }
- function padWithZerosIfNecessary(imageryProvider, key, value) {
- if (
- imageryProvider &&
- imageryProvider.urlSchemeZeroPadding &&
- imageryProvider.urlSchemeZeroPadding.hasOwnProperty(key)
- ) {
- var paddingTemplate = imageryProvider.urlSchemeZeroPadding[key];
- if (typeof paddingTemplate === "string") {
- var paddingTemplateWidth = paddingTemplate.length;
- if (paddingTemplateWidth > 1) {
- value =
- value.length >= paddingTemplateWidth
- ? value
- : new Array(
- paddingTemplateWidth - value.toString().length + 1
- ).join("0") + value;
- }
- }
- }
- return value;
- }
- function xTag(imageryProvider, x, y, level) {
- return padWithZerosIfNecessary(imageryProvider, "{x}", x);
- }
- function reverseXTag(imageryProvider, x, y, level) {
- var reverseX =
- imageryProvider.tilingScheme.getNumberOfXTilesAtLevel(level) - x - 1;
- return padWithZerosIfNecessary(imageryProvider, "{reverseX}", reverseX);
- }
- function yTag(imageryProvider, x, y, level) {
- return padWithZerosIfNecessary(imageryProvider, "{y}", y);
- }
- function reverseYTag(imageryProvider, x, y, level) {
- var reverseY =
- imageryProvider.tilingScheme.getNumberOfYTilesAtLevel(level) - y - 1;
- return padWithZerosIfNecessary(imageryProvider, "{reverseY}", reverseY);
- }
- function reverseZTag(imageryProvider, x, y, level) {
- var maximumLevel = imageryProvider.maximumLevel;
- var reverseZ =
- defined(maximumLevel) && level < maximumLevel
- ? maximumLevel - level - 1
- : level;
- return padWithZerosIfNecessary(imageryProvider, "{reverseZ}", reverseZ);
- }
- function zTag(imageryProvider, x, y, level) {
- return padWithZerosIfNecessary(imageryProvider, "{z}", level);
- }
- function sTag(imageryProvider, x, y, level) {
- var index = (x + y + level) % imageryProvider._subdomains.length;
- return imageryProvider._subdomains[index];
- }
- function computeDegrees(imageryProvider, x, y, level) {
- if (degreesScratchComputed) {
- return;
- }
- imageryProvider.tilingScheme.tileXYToRectangle(x, y, level, degreesScratch);
- degreesScratch.west = CesiumMath.toDegrees(degreesScratch.west);
- degreesScratch.south = CesiumMath.toDegrees(degreesScratch.south);
- degreesScratch.east = CesiumMath.toDegrees(degreesScratch.east);
- degreesScratch.north = CesiumMath.toDegrees(degreesScratch.north);
- degreesScratchComputed = true;
- }
- function westDegreesTag(imageryProvider, x, y, level) {
- computeDegrees(imageryProvider, x, y, level);
- return degreesScratch.west;
- }
- function southDegreesTag(imageryProvider, x, y, level) {
- computeDegrees(imageryProvider, x, y, level);
- return degreesScratch.south;
- }
- function eastDegreesTag(imageryProvider, x, y, level) {
- computeDegrees(imageryProvider, x, y, level);
- return degreesScratch.east;
- }
- function northDegreesTag(imageryProvider, x, y, level) {
- computeDegrees(imageryProvider, x, y, level);
- return degreesScratch.north;
- }
- function computeProjected(imageryProvider, x, y, level) {
- if (projectedScratchComputed) {
- return;
- }
- imageryProvider.tilingScheme.tileXYToNativeRectangle(
- x,
- y,
- level,
- projectedScratch
- );
- projectedScratchComputed = true;
- }
- function westProjectedTag(imageryProvider, x, y, level) {
- computeProjected(imageryProvider, x, y, level);
- return projectedScratch.west;
- }
- function southProjectedTag(imageryProvider, x, y, level) {
- computeProjected(imageryProvider, x, y, level);
- return projectedScratch.south;
- }
- function eastProjectedTag(imageryProvider, x, y, level) {
- computeProjected(imageryProvider, x, y, level);
- return projectedScratch.east;
- }
- function northProjectedTag(imageryProvider, x, y, level) {
- computeProjected(imageryProvider, x, y, level);
- return projectedScratch.north;
- }
- function widthTag(imageryProvider, x, y, level) {
- return imageryProvider.tileWidth;
- }
- function heightTag(imageryProvider, x, y, level) {
- return imageryProvider.tileHeight;
- }
- function iTag(imageryProvider, x, y, level, longitude, latitude, format) {
- computeIJ(imageryProvider, x, y, level, longitude, latitude);
- return ijScratch.x;
- }
- function jTag(imageryProvider, x, y, level, longitude, latitude, format) {
- computeIJ(imageryProvider, x, y, level, longitude, latitude);
- return ijScratch.y;
- }
- function reverseITag(
- imageryProvider,
- x,
- y,
- level,
- longitude,
- latitude,
- format
- ) {
- computeIJ(imageryProvider, x, y, level, longitude, latitude);
- return imageryProvider.tileWidth - ijScratch.x - 1;
- }
- function reverseJTag(
- imageryProvider,
- x,
- y,
- level,
- longitude,
- latitude,
- format
- ) {
- computeIJ(imageryProvider, x, y, level, longitude, latitude);
- return imageryProvider.tileHeight - ijScratch.y - 1;
- }
- var rectangleScratch = new Rectangle();
- var longitudeLatitudeProjectedScratch = new Cartesian3();
- function computeIJ(imageryProvider, x, y, level, longitude, latitude, format) {
- if (ijScratchComputed) {
- return;
- }
- computeLongitudeLatitudeProjected(
- imageryProvider,
- x,
- y,
- level,
- longitude,
- latitude
- );
- var projected = longitudeLatitudeProjectedScratch;
- var rectangle = imageryProvider.tilingScheme.tileXYToNativeRectangle(
- x,
- y,
- level,
- rectangleScratch
- );
- ijScratch.x =
- ((imageryProvider.tileWidth * (projected.x - rectangle.west)) /
- rectangle.width) |
- 0;
- ijScratch.y =
- ((imageryProvider.tileHeight * (rectangle.north - projected.y)) /
- rectangle.height) |
- 0;
- ijScratchComputed = true;
- }
- function longitudeDegreesTag(
- imageryProvider,
- x,
- y,
- level,
- longitude,
- latitude,
- format
- ) {
- return CesiumMath.toDegrees(longitude);
- }
- function latitudeDegreesTag(
- imageryProvider,
- x,
- y,
- level,
- longitude,
- latitude,
- format
- ) {
- return CesiumMath.toDegrees(latitude);
- }
- function longitudeProjectedTag(
- imageryProvider,
- x,
- y,
- level,
- longitude,
- latitude,
- format
- ) {
- computeLongitudeLatitudeProjected(
- imageryProvider,
- x,
- y,
- level,
- longitude,
- latitude
- );
- return longitudeLatitudeProjectedScratch.x;
- }
- function latitudeProjectedTag(
- imageryProvider,
- x,
- y,
- level,
- longitude,
- latitude,
- format
- ) {
- computeLongitudeLatitudeProjected(
- imageryProvider,
- x,
- y,
- level,
- longitude,
- latitude
- );
- return longitudeLatitudeProjectedScratch.y;
- }
- var cartographicScratch = new Cartographic();
- function computeLongitudeLatitudeProjected(
- imageryProvider,
- x,
- y,
- level,
- longitude,
- latitude,
- format
- ) {
- if (longitudeLatitudeProjectedScratchComputed) {
- return;
- }
- if (imageryProvider.tilingScheme.projection instanceof GeographicProjection) {
- longitudeLatitudeProjectedScratch.x = CesiumMath.toDegrees(longitude);
- longitudeLatitudeProjectedScratch.y = CesiumMath.toDegrees(latitude);
- } else {
- var cartographic = cartographicScratch;
- cartographic.longitude = longitude;
- cartographic.latitude = latitude;
- imageryProvider.tilingScheme.projection.project(
- cartographic,
- longitudeLatitudeProjectedScratch
- );
- }
- longitudeLatitudeProjectedScratchComputed = true;
- }
- function formatTag(imageryProvider, x, y, level, longitude, latitude, format) {
- return format;
- }
- export default UrlTemplateImageryProvider;
|