| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711 | 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 Rectangle from "../Core/Rectangle.js";import Resource from "../Core/Resource.js";import WebMercatorTilingScheme from "../Core/WebMercatorTilingScheme.js";import ImageryProvider from "./ImageryProvider.js";import TimeDynamicImagery from "./TimeDynamicImagery.js";const defaultParameters = Object.freeze({  service: "WMTS",  version: "1.0.0",  request: "GetTile",});/** * @typedef {Object} WebMapTileServiceImageryProvider.ConstructorOptions * * Initialization options for the WebMapTileServiceImageryProvider constructor * * @property {Resource|String} url The base URL for the WMTS GetTile operation (for KVP-encoded requests) or the tile-URL template (for RESTful requests). The tile-URL template should contain the following variables: {style}, {TileMatrixSet}, {TileMatrix}, {TileRow}, {TileCol}. The first two are optional if actual values are hardcoded or not required by the server. The {s} keyword may be used to specify subdomains. * @property {String} [format='image/jpeg'] The MIME type for images to retrieve from the server. * @property {String} layer The layer name for WMTS requests. * @property {String} style The style name for WMTS requests. * @property {String} tileMatrixSetID The identifier of the TileMatrixSet to use for WMTS requests. * @property {Array} [tileMatrixLabels] A list of identifiers in the TileMatrix to use for WMTS requests, one per TileMatrix level. * @property {Clock} [clock] A Clock instance that is used when determining the value for the time dimension. Required when `times` is specified. * @property {TimeIntervalCollection} [times] TimeIntervalCollection with its <code>data</code> property being an object containing time dynamic dimension and their values. * @property {Object} [dimensions] A object containing static dimensions and their values. * @property {Number} [tileWidth=256] The tile width in pixels. * @property {Number} [tileHeight=256] The tile height in pixels. * @property {TilingScheme} [tilingScheme] The tiling scheme corresponding to the organization of the tiles in the TileMatrixSet. * @property {Rectangle} [rectangle=Rectangle.MAX_VALUE] The rectangle covered by the layer. * @property {Number} [minimumLevel=0] The minimum level-of-detail supported by the imagery provider. * @property {Number} [maximumLevel] The maximum level-of-detail supported by the imagery provider, or undefined if there is no limit. * @property {Ellipsoid} [ellipsoid] The ellipsoid.  If not specified, the WGS84 ellipsoid is used. * @property {Credit|String} [credit] A credit for the data source, which is displayed on the canvas. * @property {String|String[]} [subdomains='abc'] The subdomains to use for the <code>{s}</code> placeholder in the URL template. *                          If this parameter is a single string, each character in the string is a subdomain.  If it is *                          an array, each element in the array is a subdomain. *//** * Provides tiled imagery served by {@link http://www.opengeospatial.org/standards/wmts|WMTS 1.0.0} compliant servers. * This provider supports HTTP KVP-encoded and RESTful GetTile requests, but does not yet support the SOAP encoding. * * @alias WebMapTileServiceImageryProvider * @constructor * * @param {WebMapTileServiceImageryProvider.ConstructorOptions} options Object describing initialization options * * @demo {@link https://sandcastle.cesium.com/index.html?src=Web%20Map%20Tile%20Service%20with%20Time.html|Cesium Sandcastle Web Map Tile Service with Time Demo} * * @example * // Example 1. USGS shaded relief tiles (KVP) * const shadedRelief1 = new Cesium.WebMapTileServiceImageryProvider({ *     url : 'http://basemap.nationalmap.gov/arcgis/rest/services/USGSShadedReliefOnly/MapServer/WMTS', *     layer : 'USGSShadedReliefOnly', *     style : 'default', *     format : 'image/jpeg', *     tileMatrixSetID : 'default028mm', *     // tileMatrixLabels : ['default028mm:0', 'default028mm:1', 'default028mm:2' ...], *     maximumLevel: 19, *     credit : new Cesium.Credit('U. S. Geological Survey') * }); * viewer.imageryLayers.addImageryProvider(shadedRelief1); * * @example * // Example 2. USGS shaded relief tiles (RESTful) * const shadedRelief2 = new Cesium.WebMapTileServiceImageryProvider({ *     url : 'http://basemap.nationalmap.gov/arcgis/rest/services/USGSShadedReliefOnly/MapServer/WMTS/tile/1.0.0/USGSShadedReliefOnly/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpg', *     layer : 'USGSShadedReliefOnly', *     style : 'default', *     format : 'image/jpeg', *     tileMatrixSetID : 'default028mm', *     maximumLevel: 19, *     credit : new Cesium.Credit('U. S. Geological Survey') * }); * viewer.imageryLayers.addImageryProvider(shadedRelief2); * * @example * // Example 3. NASA time dynamic weather data (RESTful) * const times = Cesium.TimeIntervalCollection.fromIso8601({ *     iso8601: '2015-07-30/2017-06-16/P1D', *     dataCallback: function dataCallback(interval, index) { *         return { *             Time: Cesium.JulianDate.toIso8601(interval.start) *         }; *     } * }); * const weather = new Cesium.WebMapTileServiceImageryProvider({ *     url : 'https://gibs.earthdata.nasa.gov/wmts/epsg4326/best/AMSR2_Snow_Water_Equivalent/default/{Time}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.png', *     layer : 'AMSR2_Snow_Water_Equivalent', *     style : 'default', *     tileMatrixSetID : '2km', *     maximumLevel : 5, *     format : 'image/png', *     clock: clock, *     times: times, *     credit : new Cesium.Credit('NASA Global Imagery Browse Services for EOSDIS') * }); * viewer.imageryLayers.addImageryProvider(weather); * * @see ArcGisMapServerImageryProvider * @see BingMapsImageryProvider * @see GoogleEarthEnterpriseMapsProvider * @see OpenStreetMapImageryProvider * @see SingleTileImageryProvider * @see TileMapServiceImageryProvider * @see WebMapServiceImageryProvider * @see UrlTemplateImageryProvider */function WebMapTileServiceImageryProvider(options) {  options = defaultValue(options, defaultValue.EMPTY_OBJECT);  //>>includeStart('debug', pragmas.debug);  if (!defined(options.url)) {    throw new DeveloperError("options.url is required.");  }  if (!defined(options.layer)) {    throw new DeveloperError("options.layer is required.");  }  if (!defined(options.style)) {    throw new DeveloperError("options.style is required.");  }  if (!defined(options.tileMatrixSetID)) {    throw new DeveloperError("options.tileMatrixSetID is required.");  }  if (defined(options.times) && !defined(options.clock)) {    throw new DeveloperError(      "options.times was specified, so options.clock is required."    );  }  //>>includeEnd('debug');  /**   * The default alpha blending value of this provider, with 0.0 representing fully transparent and   * 1.0 representing fully opaque.   *   * @type {Number|undefined}   * @default undefined   */  this.defaultAlpha = undefined;  /**   * The default alpha blending value on the night side of the globe of this provider, with 0.0 representing fully transparent and   * 1.0 representing fully opaque.   *   * @type {Number|undefined}   * @default undefined   */  this.defaultNightAlpha = undefined;  /**   * The default alpha blending value on the day side of the globe of this provider, with 0.0 representing fully transparent and   * 1.0 representing fully opaque.   *   * @type {Number|undefined}   * @default undefined   */  this.defaultDayAlpha = undefined;  /**   * The default brightness of this provider.  1.0 uses the unmodified imagery color.  Less than 1.0   * makes the imagery darker while greater than 1.0 makes it brighter.   *   * @type {Number|undefined}   * @default undefined   */  this.defaultBrightness = undefined;  /**   * The default contrast of this provider.  1.0 uses the unmodified imagery color.  Less than 1.0 reduces   * the contrast while greater than 1.0 increases it.   *   * @type {Number|undefined}   * @default undefined   */  this.defaultContrast = undefined;  /**   * The default hue of this provider in radians. 0.0 uses the unmodified imagery color.   *   * @type {Number|undefined}   * @default undefined   */  this.defaultHue = undefined;  /**   * The default saturation of this provider. 1.0 uses the unmodified imagery color. Less than 1.0 reduces the   * saturation while greater than 1.0 increases it.   *   * @type {Number|undefined}   * @default undefined   */  this.defaultSaturation = undefined;  /**   * The default gamma correction to apply to this provider.  1.0 uses the unmodified imagery color.   *   * @type {Number|undefined}   * @default undefined   */  this.defaultGamma = undefined;  /**   * The default texture minification filter to apply to this provider.   *   * @type {TextureMinificationFilter}   * @default undefined   */  this.defaultMinificationFilter = undefined;  /**   * The default texture magnification filter to apply to this provider.   *   * @type {TextureMagnificationFilter}   * @default undefined   */  this.defaultMagnificationFilter = undefined;  const resource = Resource.createIfNeeded(options.url);  const style = options.style;  const tileMatrixSetID = options.tileMatrixSetID;  const url = resource.url;  const bracketMatch = url.match(/{/g);  if (    !defined(bracketMatch) ||    (bracketMatch.length === 1 && /{s}/.test(url))  ) {    resource.setQueryParameters(defaultParameters);    this._useKvp = true;  } else {    const templateValues = {      style: style,      Style: style,      TileMatrixSet: tileMatrixSetID,    };    resource.setTemplateValues(templateValues);    this._useKvp = false;  }  this._resource = resource;  this._layer = options.layer;  this._style = style;  this._tileMatrixSetID = tileMatrixSetID;  this._tileMatrixLabels = options.tileMatrixLabels;  this._format = defaultValue(options.format, "image/jpeg");  this._tileDiscardPolicy = options.tileDiscardPolicy;  this._tilingScheme = defined(options.tilingScheme)    ? options.tilingScheme    : new WebMercatorTilingScheme({ ellipsoid: options.ellipsoid });  this._tileWidth = defaultValue(options.tileWidth, 256);  this._tileHeight = defaultValue(options.tileHeight, 256);  this._minimumLevel = defaultValue(options.minimumLevel, 0);  this._maximumLevel = options.maximumLevel;  this._rectangle = defaultValue(    options.rectangle,    this._tilingScheme.rectangle  );  this._dimensions = options.dimensions;  const that = this;  this._reload = undefined;  if (defined(options.times)) {    this._timeDynamicImagery = new TimeDynamicImagery({      clock: options.clock,      times: options.times,      requestImageFunction: function (x, y, level, request, interval) {        return requestImage(that, x, y, level, request, interval);      },      reloadFunction: function () {        if (defined(that._reload)) {          that._reload();        }      },    });  }  this._readyPromise = Promise.resolve(true);  // Check the number of tiles at the minimum level.  If it's more than four,  // throw an exception, because starting at the higher minimum  // level will cause too many tiles to be downloaded and rendered.  const swTile = this._tilingScheme.positionToTileXY(    Rectangle.southwest(this._rectangle),    this._minimumLevel  );  const neTile = this._tilingScheme.positionToTileXY(    Rectangle.northeast(this._rectangle),    this._minimumLevel  );  const tileCount =    (Math.abs(neTile.x - swTile.x) + 1) * (Math.abs(neTile.y - swTile.y) + 1);  //>>includeStart('debug', pragmas.debug);  if (tileCount > 4) {    throw new DeveloperError(      `The imagery provider's rectangle and minimumLevel indicate that there are ${tileCount} tiles at the minimum level. Imagery providers with more than four tiles at the minimum level are not supported.`    );  }  //>>includeEnd('debug');  this._errorEvent = new Event();  const credit = options.credit;  this._credit = typeof credit === "string" ? new Credit(credit) : credit;  this._subdomains = options.subdomains;  if (Array.isArray(this._subdomains)) {    this._subdomains = this._subdomains.slice();  } else if (defined(this._subdomains) && this._subdomains.length > 0) {    this._subdomains = this._subdomains.split("");  } else {    this._subdomains = ["a", "b", "c"];  }}function requestImage(imageryProvider, col, row, level, request, interval) {  const labels = imageryProvider._tileMatrixLabels;  const tileMatrix = defined(labels) ? labels[level] : level.toString();  const subdomains = imageryProvider._subdomains;  const staticDimensions = imageryProvider._dimensions;  const dynamicIntervalData = defined(interval) ? interval.data : undefined;  let resource;  let templateValues;  if (!imageryProvider._useKvp) {    templateValues = {      TileMatrix: tileMatrix,      TileRow: row.toString(),      TileCol: col.toString(),      s: subdomains[(col + row + level) % subdomains.length],    };    resource = imageryProvider._resource.getDerivedResource({      request: request,    });    resource.setTemplateValues(templateValues);    if (defined(staticDimensions)) {      resource.setTemplateValues(staticDimensions);    }    if (defined(dynamicIntervalData)) {      resource.setTemplateValues(dynamicIntervalData);    }  } else {    // build KVP request    let query = {};    query.tilematrix = tileMatrix;    query.layer = imageryProvider._layer;    query.style = imageryProvider._style;    query.tilerow = row;    query.tilecol = col;    query.tilematrixset = imageryProvider._tileMatrixSetID;    query.format = imageryProvider._format;    if (defined(staticDimensions)) {      query = combine(query, staticDimensions);    }    if (defined(dynamicIntervalData)) {      query = combine(query, dynamicIntervalData);    }    templateValues = {      s: subdomains[(col + row + level) % subdomains.length],    };    resource = imageryProvider._resource.getDerivedResource({      queryParameters: query,      request: request,    });    resource.setTemplateValues(templateValues);  }  return ImageryProvider.loadImage(imageryProvider, resource);}Object.defineProperties(WebMapTileServiceImageryProvider.prototype, {  /**   * Gets the URL of the service hosting the imagery.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {String}   * @readonly   */  url: {    get: function () {      return this._resource.url;    },  },  /**   * Gets the proxy used by this provider.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {Proxy}   * @readonly   */  proxy: {    get: function () {      return this._resource.proxy;    },  },  /**   * Gets the width of each tile, in pixels. This function should   * not be called before {@link WebMapTileServiceImageryProvider#ready} returns true.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {Number}   * @readonly   */  tileWidth: {    get: function () {      return this._tileWidth;    },  },  /**   * Gets the height of each tile, in pixels.  This function should   * not be called before {@link WebMapTileServiceImageryProvider#ready} returns true.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {Number}   * @readonly   */  tileHeight: {    get: function () {      return this._tileHeight;    },  },  /**   * Gets the maximum level-of-detail that can be requested.  This function should   * not be called before {@link WebMapTileServiceImageryProvider#ready} returns true.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {Number|undefined}   * @readonly   */  maximumLevel: {    get: function () {      return this._maximumLevel;    },  },  /**   * Gets the minimum level-of-detail that can be requested.  This function should   * not be called before {@link WebMapTileServiceImageryProvider#ready} returns true.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {Number}   * @readonly   */  minimumLevel: {    get: function () {      return this._minimumLevel;    },  },  /**   * Gets the tiling scheme used by this provider.  This function should   * not be called before {@link WebMapTileServiceImageryProvider#ready} returns true.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {TilingScheme}   * @readonly   */  tilingScheme: {    get: function () {      return this._tilingScheme;    },  },  /**   * Gets the rectangle, in radians, of the imagery provided by this instance.  This function should   * not be called before {@link WebMapTileServiceImageryProvider#ready} returns true.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {Rectangle}   * @readonly   */  rectangle: {    get: function () {      return this._rectangle;    },  },  /**   * Gets the tile discard policy.  If not undefined, the discard policy is responsible   * for filtering out "missing" tiles via its shouldDiscardImage function.  If this function   * returns undefined, no tiles are filtered.  This function should   * not be called before {@link WebMapTileServiceImageryProvider#ready} returns true.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {TileDiscardPolicy}   * @readonly   */  tileDiscardPolicy: {    get: function () {      return this._tileDiscardPolicy;    },  },  /**   * Gets an event that is raised when the imagery provider encounters an asynchronous error.  By subscribing   * to the event, you will be notified of the error and can potentially recover from it.  Event listeners   * are passed an instance of {@link TileProviderError}.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {Event}   * @readonly   */  errorEvent: {    get: function () {      return this._errorEvent;    },  },  /**   * Gets the mime type of images returned by this imagery provider.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {String}   * @readonly   */  format: {    get: function () {      return this._format;    },  },  /**   * Gets a value indicating whether or not the provider is ready for use.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {Boolean}   * @readonly   */  ready: {    value: true,  },  /**   * Gets a promise that resolves to true when the provider is ready for use.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {Promise.<Boolean>}   * @readonly   */  readyPromise: {    get: function () {      return this._readyPromise;    },  },  /**   * Gets the credit to display when this imagery provider is active.  Typically this is used to credit   * the source of the imagery.  This function should not be called before {@link WebMapTileServiceImageryProvider#ready} returns true.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {Credit}   * @readonly   */  credit: {    get: function () {      return this._credit;    },  },  /**   * Gets a value indicating whether or not the images provided by this imagery provider   * include an alpha channel.  If this property is false, an alpha channel, if present, will   * be ignored.  If this property is true, any images without an alpha channel will be treated   * as if their alpha is 1.0 everywhere.  When this property is false, memory usage   * and texture upload time are reduced.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {Boolean}   * @readonly   */  hasAlphaChannel: {    get: function () {      return true;    },  },  /**   * Gets or sets a clock that is used to get keep the time used for time dynamic parameters.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {Clock}   */  clock: {    get: function () {      return this._timeDynamicImagery.clock;    },    set: function (value) {      this._timeDynamicImagery.clock = value;    },  },  /**   * Gets or sets a time interval collection that is used to get time dynamic parameters. The data of each   * TimeInterval is an object containing the keys and values of the properties that are used during   * tile requests.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {TimeIntervalCollection}   */  times: {    get: function () {      return this._timeDynamicImagery.times;    },    set: function (value) {      this._timeDynamicImagery.times = value;    },  },  /**   * Gets or sets an object that contains static dimensions and their values.   * @memberof WebMapTileServiceImageryProvider.prototype   * @type {Object}   */  dimensions: {    get: function () {      return this._dimensions;    },    set: function (value) {      if (this._dimensions !== value) {        this._dimensions = value;        if (defined(this._reload)) {          this._reload();        }      }    },  },});/** * Gets the credits to be displayed when a given tile is displayed. * * @param {Number} x The tile X coordinate. * @param {Number} y The tile Y coordinate. * @param {Number} level The tile level; * @returns {Credit[]} The credits to be displayed when the tile is displayed. * * @exception {DeveloperError} <code>getTileCredits</code> must not be called before the imagery provider is ready. */WebMapTileServiceImageryProvider.prototype.getTileCredits = function (  x,  y,  level) {  return undefined;};/** * Requests the image for a given tile.  This function should * not be called before {@link WebMapTileServiceImageryProvider#ready} returns true. * * @param {Number} x The tile X coordinate. * @param {Number} y The tile Y coordinate. * @param {Number} level The tile level. * @param {Request} [request] The request object. Intended for internal use only. * @returns {Promise.<ImageryTypes>|undefined} A promise for the image that will resolve when the image is available, or *          undefined if there are too many active requests to the server, and the request should be retried later. * * @exception {DeveloperError} <code>requestImage</code> must not be called before the imagery provider is ready. */WebMapTileServiceImageryProvider.prototype.requestImage = function (  x,  y,  level,  request) {  let result;  const timeDynamicImagery = this._timeDynamicImagery;  let currentInterval;  // Try and load from cache  if (defined(timeDynamicImagery)) {    currentInterval = timeDynamicImagery.currentInterval;    result = timeDynamicImagery.getFromCache(x, y, level, request);  }  // Couldn't load from cache  if (!defined(result)) {    result = requestImage(this, x, y, level, request, currentInterval);  }  // If we are approaching an interval, preload this tile in the next interval  if (defined(result) && defined(timeDynamicImagery)) {    timeDynamicImagery.checkApproachingInterval(x, y, level, request);  }  return result;};/** * Picking features is not currently supported by this imagery provider, so this function simply returns * undefined. * * @param {Number} x The tile X coordinate. * @param {Number} y The tile Y coordinate. * @param {Number} level The tile level. * @param {Number} longitude The longitude at which to pick features. * @param {Number} latitude  The latitude at which to pick features. * @return {undefined} Undefined since picking is not supported. */WebMapTileServiceImageryProvider.prototype.pickFeatures = function (  x,  y,  level,  longitude,  latitude) {  return undefined;};export default WebMapTileServiceImageryProvider;
 |