Map's cover state now updates every time cover is requested.

This commit is contained in:
Severin Opel 2019-12-12 17:01:51 +01:00
parent d7f867f1a6
commit 87c966062c
1 changed files with 10 additions and 4 deletions

View File

@ -92,8 +92,6 @@ export class GeoMap {
}
}
/**
* Determines if the scatter covers the container.
* @member {boolean}
@ -101,6 +99,14 @@ export class GeoMap {
* @memberof GeoMap
*/
get cover() {
// For cloning we want to store the cover inside the map.
// But the scatter is responsible for the cover state.
// So we update the app's cover state every time
// we get the value.
if (this.image && this.image.scatter && this.image.scatter.cover != null) {
this._cover = this.image.scatter.cover
}
return this._cover
}
@ -749,7 +755,7 @@ export class DeepZoomMap extends GeoMap {
clone(container, scatter = null) {
const map = new DeepZoomMap(this.mapProjection, this.tilesConfig, {
alpha: this.alpha,
cover: this.image.scatter.cover,
cover: this.cover,
debug: this.debug,
startScale: this.startScale,
minScale: this.minScale,
@ -833,7 +839,7 @@ export class ImageMap extends GeoMap {
clone(container = null, scatter = null) {
const map = new ImageMap(new PIXI.Sprite(this.sprite.texture), this.mapProjection, {
alpha: this.alpha,
cover: this.image.cover,
cover: this.cover,
debug: this.debug,
startScale: this.startScale,
minScale: this.minScale,