@mint-ui/map 1.1.3 → 1.1.4
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.
|
@@ -359,6 +359,11 @@ function (_super) {
|
|
|
359
359
|
};
|
|
360
360
|
|
|
361
361
|
NaverMintMapController.prototype.markerToTheTop = function (marker) {
|
|
362
|
+
// 이미 최상위로 올라간 상태면 (원래 zIndex가 이미 저장됨) 중복 실행 방지
|
|
363
|
+
if (this.markerOriginalZIndex !== undefined) {
|
|
364
|
+
return;
|
|
365
|
+
}
|
|
366
|
+
|
|
362
367
|
var currentZIndex = this.getCurrentZIndex(marker); // undefined면 null로 저장 (원래 zIndex가 없었음을 표시)
|
|
363
368
|
|
|
364
369
|
this.markerOriginalZIndex = currentZIndex !== undefined ? currentZIndex : null;
|
package/dist/index.es.js
CHANGED
|
@@ -3907,6 +3907,11 @@ function (_super) {
|
|
|
3907
3907
|
};
|
|
3908
3908
|
|
|
3909
3909
|
NaverMintMapController.prototype.markerToTheTop = function (marker) {
|
|
3910
|
+
// 이미 최상위로 올라간 상태면 (원래 zIndex가 이미 저장됨) 중복 실행 방지
|
|
3911
|
+
if (this.markerOriginalZIndex !== undefined) {
|
|
3912
|
+
return;
|
|
3913
|
+
}
|
|
3914
|
+
|
|
3910
3915
|
var currentZIndex = this.getCurrentZIndex(marker); // undefined면 null로 저장 (원래 zIndex가 없었음을 표시)
|
|
3911
3916
|
|
|
3912
3917
|
this.markerOriginalZIndex = currentZIndex !== undefined ? currentZIndex : null;
|
package/dist/index.umd.js
CHANGED
|
@@ -3911,6 +3911,11 @@
|
|
|
3911
3911
|
};
|
|
3912
3912
|
|
|
3913
3913
|
NaverMintMapController.prototype.markerToTheTop = function (marker) {
|
|
3914
|
+
// 이미 최상위로 올라간 상태면 (원래 zIndex가 이미 저장됨) 중복 실행 방지
|
|
3915
|
+
if (this.markerOriginalZIndex !== undefined) {
|
|
3916
|
+
return;
|
|
3917
|
+
}
|
|
3918
|
+
|
|
3914
3919
|
var currentZIndex = this.getCurrentZIndex(marker); // undefined면 null로 저장 (원래 zIndex가 없었음을 표시)
|
|
3915
3920
|
|
|
3916
3921
|
this.markerOriginalZIndex = currentZIndex !== undefined ? currentZIndex : null;
|