Remove redundant size properties / getter
This commit is contained in:
@@ -341,13 +341,6 @@ class Icon extends ImageStyle {
|
||||
return this.iconImage_.getSize();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return {import("../size.js").Size} Size of the hit-detection image.
|
||||
*/
|
||||
getHitDetectionImageSize() {
|
||||
return this.getImageSize();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return {import("../ImageState.js").default} Image state.
|
||||
*/
|
||||
|
||||
@@ -185,14 +185,6 @@ class ImageStyle {
|
||||
return abstract();
|
||||
}
|
||||
|
||||
/**
|
||||
* @abstract
|
||||
* @return {import("../size.js").Size} Size of the hit-detection image.
|
||||
*/
|
||||
getHitDetectionImageSize() {
|
||||
return abstract();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the origin of the symbolizer.
|
||||
* @abstract
|
||||
|
||||
@@ -140,18 +140,6 @@ class RegularShape extends ImageStyle {
|
||||
*/
|
||||
this.size_ = null;
|
||||
|
||||
/**
|
||||
* @private
|
||||
* @type {import("../size.js").Size}
|
||||
*/
|
||||
this.imageSize_ = null;
|
||||
|
||||
/**
|
||||
* @private
|
||||
* @type {import("../size.js").Size}
|
||||
*/
|
||||
this.hitDetectionImageSize_ = null;
|
||||
|
||||
/**
|
||||
* @private
|
||||
* @type {RenderOptions}
|
||||
@@ -257,14 +245,7 @@ class RegularShape extends ImageStyle {
|
||||
* @return {import("../size.js").Size} Image size.
|
||||
*/
|
||||
getImageSize() {
|
||||
return this.imageSize_;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return {import("../size.js").Size} Size of the hit-detection image.
|
||||
*/
|
||||
getHitDetectionImageSize() {
|
||||
return this.hitDetectionImageSize_;
|
||||
return this.size_;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -498,8 +479,6 @@ class RegularShape extends ImageStyle {
|
||||
this.canvas_ = {};
|
||||
this.anchor_ = [size / 2 - displacement[0], size / 2 + displacement[1]];
|
||||
this.size_ = [size, size];
|
||||
this.imageSize_ = [size, size];
|
||||
this.hitDetectionImageSize_ = [size, size];
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user