@mint-ui/map 0.7.3-beta → 0.7.4-beta

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.
Files changed (67) hide show
  1. package/.eslintrc.js +109 -109
  2. package/LICENSE +21 -21
  3. package/README.md +73 -73
  4. package/dist/components/mint-map/MintMap.d.ts +10 -10
  5. package/dist/components/mint-map/MintMap.js +6 -6
  6. package/dist/components/mint-map/core/MintMapCanvasRenderer.d.ts +4 -4
  7. package/dist/components/mint-map/core/MintMapController.d.ts +69 -67
  8. package/dist/components/mint-map/core/MintMapController.js +9 -9
  9. package/dist/components/mint-map/core/MintMapCore.d.ts +3 -3
  10. package/dist/components/mint-map/core/advanced/MapBuildingProjection.d.ts +15 -15
  11. package/dist/components/mint-map/core/advanced/MapLoadingComponents.d.ts +17 -17
  12. package/dist/components/mint-map/core/advanced/index.d.ts +3 -3
  13. package/dist/components/mint-map/core/advanced/shapes/CircleMarker.d.ts +22 -22
  14. package/dist/components/mint-map/core/advanced/shapes/CircleMarker.js +6 -6
  15. package/dist/components/mint-map/core/advanced/shapes/PolygonMarker.d.ts +28 -28
  16. package/dist/components/mint-map/core/advanced/shapes/PolygonMarker.js +6 -6
  17. package/dist/components/mint-map/core/advanced/shapes/base/SVGCircle.d.ts +8 -8
  18. package/dist/components/mint-map/core/advanced/shapes/base/SVGPolygon.d.ts +12 -12
  19. package/dist/components/mint-map/core/advanced/shapes/base/SVGRect.d.ts +10 -10
  20. package/dist/components/mint-map/core/advanced/shapes/base/index.d.ts +3 -3
  21. package/dist/components/mint-map/core/advanced/shapes/index.d.ts +3 -3
  22. package/dist/components/mint-map/core/hooks/MarkerMovingHook.d.ts +6 -6
  23. package/dist/components/mint-map/core/hooks/index.d.ts +1 -1
  24. package/dist/components/mint-map/core/index.d.ts +8 -8
  25. package/dist/components/mint-map/core/provider/MintMapProvider.d.ts +8 -8
  26. package/dist/components/mint-map/core/provider/index.d.ts +1 -1
  27. package/dist/components/mint-map/core/util/animation.d.ts +16 -16
  28. package/dist/components/mint-map/core/util/cluster.d.ts +18 -18
  29. package/dist/components/mint-map/core/util/geo.d.ts +38 -38
  30. package/dist/components/mint-map/core/util/index.d.ts +7 -7
  31. package/dist/components/mint-map/core/util/log.d.ts +1 -1
  32. package/dist/components/mint-map/core/util/polygon.d.ts +42 -42
  33. package/dist/components/mint-map/core/util/status.d.ts +9 -9
  34. package/dist/components/mint-map/core/util/waiting.d.ts +1 -1
  35. package/dist/components/mint-map/core/wrapper/MapCanvasMarkerWrapper.d.ts +27 -27
  36. package/dist/components/mint-map/core/wrapper/MapCanvasMarkerWrapper.js +6 -6
  37. package/dist/components/mint-map/core/wrapper/MapCanvasWrapper.d.ts +11 -11
  38. package/dist/components/mint-map/core/wrapper/MapCanvasWrapper.js +6 -6
  39. package/dist/components/mint-map/core/wrapper/MapControlWrapper.d.ts +19 -19
  40. package/dist/components/mint-map/core/wrapper/MapControlWrapper.js +6 -6
  41. package/dist/components/mint-map/core/wrapper/MapMarkerWrapper.d.ts +51 -51
  42. package/dist/components/mint-map/core/wrapper/MapMarkerWrapper.js +6 -6
  43. package/dist/components/mint-map/core/wrapper/MapPolygonWrapper.d.ts +12 -12
  44. package/dist/components/mint-map/core/wrapper/MapPolygonWrapper.js +6 -6
  45. package/dist/components/mint-map/core/wrapper/MapPolylineWrapper.d.ts +12 -12
  46. package/dist/components/mint-map/core/wrapper/MapPolylineWrapper.js +6 -6
  47. package/dist/components/mint-map/core/wrapper/index.d.ts +6 -6
  48. package/dist/components/mint-map/google/GoogleMintMapController.d.ts +53 -51
  49. package/dist/components/mint-map/google/GoogleMintMapController.js +17 -6
  50. package/dist/components/mint-map/index.d.ts +5 -5
  51. package/dist/components/mint-map/kakao/KakaoMintMapController.d.ts +57 -55
  52. package/dist/components/mint-map/kakao/KakaoMintMapController.js +22 -13
  53. package/dist/components/mint-map/naver/NaverMintMapController.d.ts +55 -53
  54. package/dist/components/mint-map/naver/NaverMintMapController.js +20 -11
  55. package/dist/components/mint-map/types/CommonTypes.d.ts +11 -11
  56. package/dist/components/mint-map/types/MapDrawables.d.ts +118 -118
  57. package/dist/components/mint-map/types/MapDrawables.js +8 -8
  58. package/dist/components/mint-map/types/MapEventTypes.d.ts +44 -44
  59. package/dist/components/mint-map/types/MapTypes.d.ts +60 -60
  60. package/dist/components/mint-map/types/MapTypes.js +13 -13
  61. package/dist/components/mint-map/types/MintMapEvents.d.ts +25 -25
  62. package/dist/components/mint-map/types/MintMapProps.d.ts +106 -101
  63. package/dist/components/mint-map/types/index.d.ts +6 -6
  64. package/dist/index.d.ts +7 -7
  65. package/dist/index.es.js +143 -114
  66. package/dist/index.umd.js +143 -114
  67. package/package.json +77 -77
package/dist/index.es.js CHANGED
@@ -473,23 +473,23 @@ function () {
473
473
  return PolygonCalculator;
474
474
  }();
475
475
 
476
- /**
477
- * 좌표값
478
- * @description 위도/경도, DOM 상의 X/Y 좌표
476
+ /**
477
+ * 좌표값
478
+ * @description 위도/경도, DOM 상의 X/Y 좌표
479
479
  */
480
480
 
481
481
  var Position =
482
482
  /** @class */
483
483
  function () {
484
484
  function Position(lat, lng) {
485
- /**
486
- * 위도
487
- * @description 위도(latitude)
485
+ /**
486
+ * 위도
487
+ * @description 위도(latitude)
488
488
  */
489
489
  this.lat = 0;
490
- /**
491
- * 경도
492
- * @description 경도(longitude)
490
+ /**
491
+ * 경도
492
+ * @description 경도(longitude)
493
493
  */
494
494
 
495
495
  this.lng = 0;
@@ -597,15 +597,15 @@ function () {
597
597
 
598
598
  return Bounds;
599
599
  }();
600
- /**
601
- * DOM 상에서의 좌표를 표현 (픽셀을 나타내는 숫자)
600
+ /**
601
+ * DOM 상에서의 좌표를 표현 (픽셀을 나타내는 숫자)
602
602
  */
603
603
 
604
604
  var Offset =
605
605
  /** @class */
606
606
  function () {
607
- /**
608
- * DOM 상에서의 좌표를 표현 (픽셀을 나타내는 숫자)
607
+ /**
608
+ * DOM 상에서의 좌표를 표현 (픽셀을 나타내는 숫자)
609
609
  */
610
610
  function Offset(x, y) {
611
611
  this.x = x;
@@ -1136,12 +1136,12 @@ function () {
1136
1136
  MintMapController.prototype.getRandomFunctionName = function (prefix) {
1137
1137
  return "".concat(prefix, "_").concat(v4().replace(/-/g, '_'));
1138
1138
  };
1139
- /**
1140
- * URL 빌더 메서드
1141
- *
1142
- * @param {string} baseUrl: 기본 URL
1143
- * @param {{ [ key: string ]: string | string[] }} param: 파라미터 JSON
1144
- * @returns {string} URL
1139
+ /**
1140
+ * URL 빌더 메서드
1141
+ *
1142
+ * @param {string} baseUrl: 기본 URL
1143
+ * @param {{ [ key: string ]: string | string[] }} param: 파라미터 JSON
1144
+ * @returns {string} URL
1145
1145
  */
1146
1146
 
1147
1147
 
@@ -1154,9 +1154,9 @@ function () {
1154
1154
  }).join('&');
1155
1155
  return "".concat(baseUrl, "?").concat(params);
1156
1156
  };
1157
- /**
1158
- * 쓰로틀링 처리
1159
- * @returns
1157
+ /**
1158
+ * 쓰로틀링 처리
1159
+ * @returns
1160
1160
  */
1161
1161
 
1162
1162
 
@@ -1750,11 +1750,11 @@ function (_super) {
1750
1750
  var map = marker.native.getMap();
1751
1751
 
1752
1752
  if (map) {
1753
- /** 중요!!!!
1754
- * naver 마커의 setOption(MarkerOptions) 은 내부적으로 setMap 을 무조건 강제 처리한다!!!
1755
- * setMap 을 처리하면 맵의 이벤트리스너 등등이 모두 초기화 되고 다시 맵을 add 하면서 마커관련된 모든 초기화가 다시 일어난다.
1756
- * (심지어 map 이 기존과 같은 객체인데도 초기화 처리함)
1757
- * 그래서 민트맵에서는 update 를 지원하는 항목별로 명시적으로 각각 처리한다.
1753
+ /** 중요!!!!
1754
+ * naver 마커의 setOption(MarkerOptions) 은 내부적으로 setMap 을 무조건 강제 처리한다!!!
1755
+ * setMap 을 처리하면 맵의 이벤트리스너 등등이 모두 초기화 되고 다시 맵을 add 하면서 마커관련된 모든 초기화가 다시 일어난다.
1756
+ * (심지어 map 이 기존과 같은 객체인데도 초기화 처리함)
1757
+ * 그래서 민트맵에서는 update 를 지원하는 항목별로 명시적으로 각각 처리한다.
1758
1758
  */
1759
1759
  //Position
1760
1760
  if (options.position && options.position instanceof Position) {
@@ -1952,10 +1952,10 @@ function (_super) {
1952
1952
 
1953
1953
  var _this = this;
1954
1954
 
1955
- var _a, _b, _c, _d;
1955
+ var _a, _b, _c, _d, _e, _f;
1956
1956
 
1957
- return __generator(this, function (_e) {
1958
- switch (_e.label) {
1957
+ return __generator(this, function (_g) {
1958
+ switch (_g.label) {
1959
1959
  case 0:
1960
1960
  //이미 생성했으면
1961
1961
  //1. divElement 가 그대로인 경우 기존 map 객체 리턴
@@ -1979,9 +1979,9 @@ function (_super) {
1979
1979
  , this.loadMapApi()];
1980
1980
 
1981
1981
  case 1:
1982
- _e.sent();
1982
+ _g.sent();
1983
1983
 
1984
- _e.label = 2;
1984
+ _g.label = 2;
1985
1985
 
1986
1986
  case 2:
1987
1987
  options = {
@@ -2014,7 +2014,9 @@ function (_super) {
2014
2014
  options.maxZoom = maxZoom;
2015
2015
  divElement.innerHTML = '';
2016
2016
  map = new naver.maps.Map(divElement, options);
2017
- this.map = map; //@ts-ignore
2017
+ this.map = map; //맵 커서 초기화
2018
+
2019
+ ((_e = this.mapProps.base) === null || _e === void 0 ? void 0 : _e.mapCursor) && this.setMapCursor((_f = this.mapProps.base) === null || _f === void 0 ? void 0 : _f.mapCursor); //@ts-ignore
2018
2020
 
2019
2021
  map.addListener('mousedown', function () {
2020
2022
  _this.dragged = false; // console.log('map mousedown / dragged => ', this.dragged);
@@ -2129,6 +2131,13 @@ function (_super) {
2129
2131
  (_a = this.map) === null || _a === void 0 ? void 0 : _a.setCenter(position);
2130
2132
  };
2131
2133
 
2134
+ NaverMintMapController.prototype.setMapCursor = function (cursor) {
2135
+ var _a;
2136
+
2137
+ var target = (_a = this.mapDivElement.firstElementChild) === null || _a === void 0 ? void 0 : _a.firstElementChild;
2138
+ target && (target.style.cursor = cursor);
2139
+ };
2140
+
2132
2141
  NaverMintMapController.prototype.naverPositionToOffset = function (position) {
2133
2142
  if (!this.map) {
2134
2143
  return new Offset(0, 0);
@@ -2664,10 +2673,10 @@ function (_super) {
2664
2673
 
2665
2674
  var _this = this;
2666
2675
 
2667
- var _a, _b, _c, _d;
2676
+ var _a, _b, _c, _d, _e, _f;
2668
2677
 
2669
- return __generator(this, function (_e) {
2670
- switch (_e.label) {
2678
+ return __generator(this, function (_g) {
2679
+ switch (_g.label) {
2671
2680
  case 0:
2672
2681
  //이미 생성했으면
2673
2682
  //1. divElement 가 그대로인 경우 기존 map 객체 리턴
@@ -2689,9 +2698,9 @@ function (_super) {
2689
2698
  , this.loadMapApi()];
2690
2699
 
2691
2700
  case 1:
2692
- _e.sent();
2701
+ _g.sent();
2693
2702
 
2694
- _e.label = 2;
2703
+ _g.label = 2;
2695
2704
 
2696
2705
  case 2:
2697
2706
  map = new google.maps.Map(divElement, {
@@ -2705,7 +2714,9 @@ function (_super) {
2705
2714
  keyboardShortcuts: this.mapProps.keyboardShortcuts === false ? false : true,
2706
2715
  clickableIcons: false
2707
2716
  });
2708
- this.map = map; //@ts-ignore
2717
+ this.map = map; //맵 커서 초기화
2718
+
2719
+ ((_e = this.mapProps.base) === null || _e === void 0 ? void 0 : _e.mapCursor) && this.setMapCursor((_f = this.mapProps.base) === null || _f === void 0 ? void 0 : _f.mapCursor); //@ts-ignore
2709
2720
 
2710
2721
  map.addListener('mousedown', function () {
2711
2722
  _this.dragged = false; // console.log('map mousedown / dragged => ', this.dragged);
@@ -2814,6 +2825,15 @@ function (_super) {
2814
2825
  (_a = this.map) === null || _a === void 0 ? void 0 : _a.setCenter(position);
2815
2826
  };
2816
2827
 
2828
+ GoogleMintMapController.prototype.setMapCursor = function (cursor) {
2829
+ var _a;
2830
+
2831
+ (_a = this.map) === null || _a === void 0 ? void 0 : _a.setOptions({
2832
+ draggingCursor: cursor,
2833
+ draggableCursor: cursor
2834
+ });
2835
+ };
2836
+
2817
2837
  GoogleMintMapController.prototype.addEventListener = function (eventName, callback) {
2818
2838
  var _this = this;
2819
2839
 
@@ -3359,10 +3379,10 @@ function (_super) {
3359
3379
 
3360
3380
  var _this = this;
3361
3381
 
3362
- var _a, _b, _c, _d;
3382
+ var _a, _b, _c, _d, _e, _f;
3363
3383
 
3364
- return __generator(this, function (_e) {
3365
- switch (_e.label) {
3384
+ return __generator(this, function (_g) {
3385
+ switch (_g.label) {
3366
3386
  case 0:
3367
3387
  if (!!this.mapApiLoaded) return [3
3368
3388
  /*break*/
@@ -3372,9 +3392,9 @@ function (_super) {
3372
3392
  , this.loadMapApi()];
3373
3393
 
3374
3394
  case 1:
3375
- _e.sent();
3395
+ _g.sent();
3376
3396
 
3377
- _e.label = 2;
3397
+ _g.label = 2;
3378
3398
 
3379
3399
  case 2:
3380
3400
  options = {
@@ -3403,7 +3423,9 @@ function (_super) {
3403
3423
  map = new kakao.maps.Map(divElement, options);
3404
3424
  map.setMaxLevel(minZoom);
3405
3425
  map.setMinLevel(maxZoom);
3406
- this.map = map; //@ts-ignore
3426
+ this.map = map; //맵 커서 초기화
3427
+
3428
+ ((_e = this.mapProps.base) === null || _e === void 0 ? void 0 : _e.mapCursor) && this.setMapCursor((_f = this.mapProps.base) === null || _f === void 0 ? void 0 : _f.mapCursor); //@ts-ignore
3407
3429
  // map.addListener('dragstart', (e)=>{
3408
3430
  // //console.log('map dragstart', e);
3409
3431
  // this.dragStartPoint[0] = e.domEvent.clientX
@@ -3472,13 +3494,13 @@ function (_super) {
3472
3494
  };
3473
3495
 
3474
3496
  KakaoMintMapController.prototype.getSafeZoomValue = function (value) {
3475
- /**
3476
- * 카카오는 구글/네이버와 다르게 줌레벨이 작아질수록 확대된다 (가장 확대된 것이 0)
3477
- * - 가장 확대된 값 : 1
3478
- * - 가장 축소된 값 : 14
3479
- *
3480
- * 그래서 세계지도가 없는 카카오는 동일한 사정인 네이버와 매핑하기로 한다.
3481
- * 문제는 둘 간의 줌 레벨별 축척이 일치하지 않는다. 그래서 가장 유사한 레벨 끼리 매핑이 필요하다
3497
+ /**
3498
+ * 카카오는 구글/네이버와 다르게 줌레벨이 작아질수록 확대된다 (가장 확대된 것이 0)
3499
+ * - 가장 확대된 값 : 1
3500
+ * - 가장 축소된 값 : 14
3501
+ *
3502
+ * 그래서 세계지도가 없는 카카오는 동일한 사정인 네이버와 매핑하기로 한다.
3503
+ * 문제는 둘 간의 줌 레벨별 축척이 일치하지 않는다. 그래서 가장 유사한 레벨 끼리 매핑이 필요하다
3482
3504
  */
3483
3505
  var mapValue = this.getBaseToMapZoom(value);
3484
3506
 
@@ -3538,6 +3560,13 @@ function (_super) {
3538
3560
  (_a = this.map) === null || _a === void 0 ? void 0 : _a.setCenter(this.positionToLatLng(position));
3539
3561
  };
3540
3562
 
3563
+ KakaoMintMapController.prototype.setMapCursor = function (cursor) {
3564
+ var _a;
3565
+
3566
+ var target = (_a = this.mapDivElement.firstElementChild) === null || _a === void 0 ? void 0 : _a.firstElementChild;
3567
+ target && (target.style.cursor = cursor);
3568
+ };
3569
+
3541
3570
  KakaoMintMapController.prototype.positionToLatLng = function (pos) {
3542
3571
  return pos ? new kakao.maps.LatLng(pos.lat, pos.lng) : new kakao.maps.LatLng(0, 0);
3543
3572
  };
@@ -3663,12 +3692,12 @@ var DEFAULT_CENTER = {
3663
3692
  lat: 37.5036845,
3664
3693
  lng: 127.0448698
3665
3694
  };
3666
- /**
3667
- * Mint Map 컴포넌트
3668
- *
3669
- * @param {MintMapProps} MintMapProps
3670
- *
3671
- * @returns {JSX.Element} JSX
3695
+ /**
3696
+ * Mint Map 컴포넌트
3697
+ *
3698
+ * @param {MintMapProps} MintMapProps
3699
+ *
3700
+ * @returns {JSX.Element} JSX
3672
3701
  */
3673
3702
 
3674
3703
  function MintMap(_a) {
@@ -3830,8 +3859,8 @@ var Marker =
3830
3859
  /** @class */
3831
3860
  function (_super) {
3832
3861
  __extends(Marker, _super);
3833
- /**
3834
- * 지도에 표시할 마커정보
3862
+ /**
3863
+ * 지도에 표시할 마커정보
3835
3864
  */
3836
3865
 
3837
3866
 
@@ -3849,8 +3878,8 @@ var Polyline =
3849
3878
  /** @class */
3850
3879
  function (_super) {
3851
3880
  __extends(Polyline, _super);
3852
- /**
3853
- * 지도에 표시할 폴리곤정보
3881
+ /**
3882
+ * 지도에 표시할 폴리곤정보
3854
3883
  */
3855
3884
 
3856
3885
 
@@ -3868,8 +3897,8 @@ var Polygon =
3868
3897
  /** @class */
3869
3898
  function (_super) {
3870
3899
  __extends(Polygon, _super);
3871
- /**
3872
- * 지도에 표시할 폴리곤정보
3900
+ /**
3901
+ * 지도에 표시할 폴리곤정보
3873
3902
  */
3874
3903
 
3875
3904
 
@@ -3879,8 +3908,8 @@ function (_super) {
3879
3908
  _this.options = options;
3880
3909
  return _this;
3881
3910
  }
3882
- /**
3883
- * 폴리곤의 중점을 구한다.
3911
+ /**
3912
+ * 폴리곤의 중점을 구한다.
3884
3913
  */
3885
3914
 
3886
3915
 
@@ -4300,12 +4329,12 @@ var getMarkersFitPosition = function (containerPosition, containerSize, markerPo
4300
4329
 
4301
4330
  return 0;
4302
4331
  };
4303
- /**
4304
- * Mint Map 컴포넌트
4305
- *
4306
- * @param {MapControlWrapperProps} MapControlWrapperProps
4307
- *
4308
- * @returns {JSX.Element} JSX
4332
+ /**
4333
+ * Mint Map 컴포넌트
4334
+ *
4335
+ * @param {MapControlWrapperProps} MapControlWrapperProps
4336
+ *
4337
+ * @returns {JSX.Element} JSX
4309
4338
  */
4310
4339
 
4311
4340
 
@@ -4475,12 +4504,12 @@ function MapMarkerWrapper(_a) {
4475
4504
  return createPortal(children, divElement);
4476
4505
  }
4477
4506
 
4478
- /**
4479
- * CircleMarker
4480
- *
4481
- * @param {CircleMarkerProps} CircleMarkerProps
4482
- *
4483
- * @returns {JSX.Element} JSX
4507
+ /**
4508
+ * CircleMarker
4509
+ *
4510
+ * @param {CircleMarkerProps} CircleMarkerProps
4511
+ *
4512
+ * @returns {JSX.Element} JSX
4484
4513
  */
4485
4514
 
4486
4515
  function CircleMarker(_a) {
@@ -4596,12 +4625,12 @@ function CircleMarker(_a) {
4596
4625
  }, children)));
4597
4626
  }
4598
4627
 
4599
- /**
4600
- *PolygonMarker
4601
- *
4602
- * @param {PolygonMarkerProps} PolygonMarkerProps
4603
- *
4604
- * @returns {JSX.Element} JSX
4628
+ /**
4629
+ *PolygonMarker
4630
+ *
4631
+ * @param {PolygonMarkerProps} PolygonMarkerProps
4632
+ *
4633
+ * @returns {JSX.Element} JSX
4605
4634
  */
4606
4635
 
4607
4636
  function PolygonMarker(_a) {
@@ -4770,12 +4799,12 @@ function PolygonMarker(_a) {
4770
4799
  }, children)));
4771
4800
  }
4772
4801
 
4773
- /**
4774
- * Mint Map 컴포넌트
4775
- *
4776
- * @param {MapControlWrapperProps} MapControlWrapperProps
4777
- *
4778
- * @returns {JSX.Element} JSX
4802
+ /**
4803
+ * Mint Map 컴포넌트
4804
+ *
4805
+ * @param {MapControlWrapperProps} MapControlWrapperProps
4806
+ *
4807
+ * @returns {JSX.Element} JSX
4779
4808
  */
4780
4809
 
4781
4810
  function MapPolygonWrapper(_a) {
@@ -5221,12 +5250,12 @@ var styles = {"mint-map-control-wrapper-container":"MintMapWrapper-module_mint-m
5221
5250
  styleInject(css_248z);
5222
5251
 
5223
5252
  var cn = classNames.bind(styles);
5224
- /**
5225
- * Mint Map 컴포넌트
5226
- *
5227
- * @param {MapControlWrapperProps} MapControlWrapperProps
5228
- *
5229
- * @returns {JSX.Element} JSX
5253
+ /**
5254
+ * Mint Map 컴포넌트
5255
+ *
5256
+ * @param {MapControlWrapperProps} MapControlWrapperProps
5257
+ *
5258
+ * @returns {JSX.Element} JSX
5230
5259
  */
5231
5260
 
5232
5261
  function MapControlWrapper(_a) {
@@ -5256,12 +5285,12 @@ function MapControlWrapper(_a) {
5256
5285
  }, children));
5257
5286
  }
5258
5287
 
5259
- /**
5260
- * Mint Map 컴포넌트
5261
- *
5262
- * @param {MapControlWrapperProps} MapControlWrapperProps
5263
- *
5264
- * @returns {JSX.Element} JSX
5288
+ /**
5289
+ * Mint Map 컴포넌트
5290
+ *
5291
+ * @param {MapControlWrapperProps} MapControlWrapperProps
5292
+ *
5293
+ * @returns {JSX.Element} JSX
5265
5294
  */
5266
5295
 
5267
5296
  function MapPolylineWrapper(_a) {
@@ -5302,12 +5331,12 @@ var console$1 = {
5302
5331
  log: function () {
5303
5332
  }
5304
5333
  };
5305
- /**
5306
- * Mint Map 컴포넌트
5307
- *
5308
- * @param {MapControlWrapperProps} MapControlWrapperProps
5309
- *
5310
- * @returns {JSX.Element} JSX
5334
+ /**
5335
+ * Mint Map 컴포넌트
5336
+ *
5337
+ * @param {MapControlWrapperProps} MapControlWrapperProps
5338
+ *
5339
+ * @returns {JSX.Element} JSX
5311
5340
  */
5312
5341
 
5313
5342
  function MapCanvasWrapper(_a) {
@@ -5626,12 +5655,12 @@ function MapCanvasWrapper(_a) {
5626
5655
  }), renderFlag && React.createElement(React.Fragment, null));
5627
5656
  }
5628
5657
 
5629
- /**
5630
- * Mint Map 컴포넌트
5631
- *
5632
- * @param {MapControlWrapperProps} MapControlWrapperProps
5633
- *
5634
- * @returns {JSX.Element} JSX
5658
+ /**
5659
+ * Mint Map 컴포넌트
5660
+ *
5661
+ * @param {MapControlWrapperProps} MapControlWrapperProps
5662
+ *
5663
+ * @returns {JSX.Element} JSX
5635
5664
  */
5636
5665
 
5637
5666
  function MapCanvasMarkerWrapper(_props) {