@gisatcz/deckgl-geolib 1.11.0-dev.7 → 1.11.0-dev.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/index.js CHANGED
@@ -15523,13 +15523,6 @@ const defaultProps$1 = Object.assign(Object.assign({}, geoLayers.TileLayer.defau
15523
15523
  // },
15524
15524
  // Supply url to local terrain worker bundle. Only required if running offline and cannot access CDN.
15525
15525
  workerUrl: '' });
15526
- // Turns array of templates into a single string to work around shallow change
15527
- function urlTemplateToUpdateTrigger$1(template) {
15528
- if (Array.isArray(template)) {
15529
- return template.join(';');
15530
- }
15531
- return template || '';
15532
- }
15533
15526
  /** Render bitmap texture from cog raster images. */
15534
15527
  class CogBitmapLayer extends core.CompositeLayer {
15535
15528
  // private _isLoaded: boolean;
@@ -15621,10 +15614,10 @@ class CogBitmapLayer extends core.CompositeLayer {
15621
15614
  renderSubLayers: this.renderSubLayers.bind(this),
15622
15615
  updateTriggers: {
15623
15616
  getTileData: {
15624
- rasterData: urlTemplateToUpdateTrigger$1(rasterData),
15617
+ // rasterData: urlTemplateToUpdateTrigger(rasterData),
15625
15618
  // blurredTexture,
15626
15619
  // opacity,
15627
- cogBitmapOptions,
15620
+ // cogBitmapOptions,
15628
15621
  clampToTerrain,
15629
15622
  },
15630
15623
  },