react-native-map4d-map-dtqg 0.1.4 → 0.1.6

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 (217) hide show
  1. package/README.md +58 -0
  2. package/android/.gradle/9.2.0/fileHashes/fileHashes.lock +0 -0
  3. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  4. package/android/.gradle/buildOutputCleanup/cache.properties +2 -2
  5. package/android/build.gradle +23 -2
  6. package/android/src/main/java/com/reactnativemap4dmap/Map4dMapModule.java +39 -27
  7. package/ios/Map4dMap.h +12 -3
  8. package/ios/Map4dMap.m +108 -3
  9. package/ios/Map4dMapTurbo.mm +16 -0
  10. package/ios/RMFCircleManager.m +40 -68
  11. package/ios/RMFDirectionsRendererManager.m +26 -24
  12. package/ios/RMFMapViewManager.m +64 -149
  13. package/ios/RMFMarkerManager.m +36 -64
  14. package/ios/RMFPOIManager.m +40 -74
  15. package/ios/RMFPolygonManager.m +38 -60
  16. package/ios/RMFPolylineManager.m +36 -58
  17. package/ios/building/RMFBuildingManager.m +36 -64
  18. package/lib/commonjs/components/MFBanDoSo/constants.js +30 -0
  19. package/lib/commonjs/components/MFBanDoSo/constants.js.map +1 -0
  20. package/lib/commonjs/components/MFBanDoSo/helpers.js +200 -0
  21. package/lib/commonjs/components/MFBanDoSo/helpers.js.map +1 -0
  22. package/lib/commonjs/components/MFBanDoSo/propTypes.js +18 -0
  23. package/lib/commonjs/components/MFBanDoSo/propTypes.js.map +1 -0
  24. package/lib/commonjs/components/MFBanDoSo/styles.js +334 -0
  25. package/lib/commonjs/components/MFBanDoSo/styles.js.map +1 -0
  26. package/lib/commonjs/components/MFBanDoSo/ui.js +231 -0
  27. package/lib/commonjs/components/MFBanDoSo/ui.js.map +1 -0
  28. package/lib/commonjs/components/MFBanDoSo.js +201 -73
  29. package/lib/commonjs/components/MFBanDoSo.js.map +1 -1
  30. package/lib/commonjs/components/MFBuilding.js +15 -90
  31. package/lib/commonjs/components/MFBuilding.js.map +1 -1
  32. package/lib/commonjs/components/MFCircle.js +20 -88
  33. package/lib/commonjs/components/MFCircle.js.map +1 -1
  34. package/lib/commonjs/components/MFDirectionsRenderer.js +15 -93
  35. package/lib/commonjs/components/MFDirectionsRenderer.js.map +1 -1
  36. package/lib/commonjs/components/MFMapView.js +50 -147
  37. package/lib/commonjs/components/MFMapView.js.map +1 -1
  38. package/lib/commonjs/components/MFMarker.js +15 -101
  39. package/lib/commonjs/components/MFMarker.js.map +1 -1
  40. package/lib/commonjs/components/MFPOI.js +17 -92
  41. package/lib/commonjs/components/MFPOI.js.map +1 -1
  42. package/lib/commonjs/components/MFPolygon.js +15 -87
  43. package/lib/commonjs/components/MFPolygon.js.map +1 -1
  44. package/lib/commonjs/components/MFPolyline.js +17 -87
  45. package/lib/commonjs/components/MFPolyline.js.map +1 -1
  46. package/lib/commonjs/components/MFTileOverlay.js +7 -15
  47. package/lib/commonjs/components/MFTileOverlay.js.map +1 -1
  48. package/lib/commonjs/components/Map4dMapView.js +1 -4
  49. package/lib/commonjs/components/Map4dMapView.js.map +1 -1
  50. package/lib/commonjs/components/extends/AreaFocusManager.js +4 -38
  51. package/lib/commonjs/components/extends/AreaFocusManager.js.map +1 -1
  52. package/lib/commonjs/components/extends/AreaFocuser.js +1 -17
  53. package/lib/commonjs/components/extends/AreaFocuser.js.map +1 -1
  54. package/lib/commonjs/components/extends/BoundHelper.js +0 -6
  55. package/lib/commonjs/components/extends/BoundHelper.js.map +1 -1
  56. package/lib/commonjs/components/extends/area/AreaFocusAreas.js +0 -37
  57. package/lib/commonjs/components/extends/area/AreaFocusAreas.js.map +1 -1
  58. package/lib/commonjs/components/extends/area/AreaFocusGeometryUtils.js +1 -35
  59. package/lib/commonjs/components/extends/area/AreaFocusGeometryUtils.js.map +1 -1
  60. package/lib/commonjs/components/extends/area/AreaFocusSession.js +0 -18
  61. package/lib/commonjs/components/extends/area/AreaFocusSession.js.map +1 -1
  62. package/lib/commonjs/components/extends/area/AreaFocusTypes.js +2 -3
  63. package/lib/commonjs/components/extends/area/AreaFocusTypes.js.map +1 -1
  64. package/lib/commonjs/components/internal/DefaultRoadmapStyle.js +1 -2
  65. package/lib/commonjs/components/internal/DefaultRoadmapStyle.js.map +1 -1
  66. package/lib/commonjs/components/internal/GeojsonStyleUtils.js +20 -31
  67. package/lib/commonjs/components/internal/GeojsonStyleUtils.js.map +1 -1
  68. package/lib/commonjs/index.js +0 -11
  69. package/lib/commonjs/index.js.map +1 -1
  70. package/lib/commonjs/native/Map4dMapNativeModule.js +10 -0
  71. package/lib/commonjs/native/Map4dMapNativeModule.js.map +1 -0
  72. package/lib/commonjs/native/NativeModuleResolver.js +35 -0
  73. package/lib/commonjs/native/NativeModuleResolver.js.map +1 -0
  74. package/lib/commonjs/native/ViewManagerCommand.js +67 -0
  75. package/lib/commonjs/native/ViewManagerCommand.js.map +1 -0
  76. package/lib/commonjs/package.json +1 -0
  77. package/lib/commonjs/specs/NativeMap4dMap.js +9 -0
  78. package/lib/commonjs/specs/NativeMap4dMap.js.map +1 -0
  79. package/lib/module/components/MFBanDoSo/constants.js +25 -0
  80. package/lib/module/components/MFBanDoSo/constants.js.map +1 -0
  81. package/lib/module/components/MFBanDoSo/helpers.js +188 -0
  82. package/lib/module/components/MFBanDoSo/helpers.js.map +1 -0
  83. package/lib/module/components/MFBanDoSo/propTypes.js +14 -0
  84. package/lib/module/components/MFBanDoSo/propTypes.js.map +1 -0
  85. package/lib/module/components/MFBanDoSo/styles.js +332 -0
  86. package/lib/module/components/MFBanDoSo/styles.js.map +1 -0
  87. package/lib/module/components/MFBanDoSo/ui.js +224 -0
  88. package/lib/module/components/MFBanDoSo/ui.js.map +1 -0
  89. package/lib/module/components/MFBanDoSo.js +203 -63
  90. package/lib/module/components/MFBanDoSo.js.map +1 -1
  91. package/lib/module/components/MFBuilding.js +17 -82
  92. package/lib/module/components/MFBuilding.js.map +1 -1
  93. package/lib/module/components/MFCircle.js +22 -80
  94. package/lib/module/components/MFCircle.js.map +1 -1
  95. package/lib/module/components/MFDirectionsRenderer.js +16 -85
  96. package/lib/module/components/MFDirectionsRenderer.js.map +1 -1
  97. package/lib/module/components/MFMapView.js +51 -136
  98. package/lib/module/components/MFMapView.js.map +1 -1
  99. package/lib/module/components/MFMarker.js +17 -92
  100. package/lib/module/components/MFMarker.js.map +1 -1
  101. package/lib/module/components/MFPOI.js +19 -84
  102. package/lib/module/components/MFPOI.js.map +1 -1
  103. package/lib/module/components/MFPolygon.js +17 -79
  104. package/lib/module/components/MFPolygon.js.map +1 -1
  105. package/lib/module/components/MFPolyline.js +19 -79
  106. package/lib/module/components/MFPolyline.js.map +1 -1
  107. package/lib/module/components/MFTileOverlay.js +10 -9
  108. package/lib/module/components/MFTileOverlay.js.map +1 -1
  109. package/lib/module/components/Map4dMapView.js +2 -0
  110. package/lib/module/components/Map4dMapView.js.map +1 -1
  111. package/lib/module/components/extends/AreaFocusManager.js +6 -32
  112. package/lib/module/components/extends/AreaFocusManager.js.map +1 -1
  113. package/lib/module/components/extends/AreaFocuser.js +3 -15
  114. package/lib/module/components/extends/AreaFocuser.js.map +1 -1
  115. package/lib/module/components/extends/BoundHelper.js +2 -5
  116. package/lib/module/components/extends/BoundHelper.js.map +1 -1
  117. package/lib/module/components/extends/area/AreaFocusAreas.js +2 -33
  118. package/lib/module/components/extends/area/AreaFocusAreas.js.map +1 -1
  119. package/lib/module/components/extends/area/AreaFocusGeometryUtils.js +2 -32
  120. package/lib/module/components/extends/area/AreaFocusGeometryUtils.js.map +1 -1
  121. package/lib/module/components/extends/area/AreaFocusSession.js +2 -17
  122. package/lib/module/components/extends/area/AreaFocusSession.js.map +1 -1
  123. package/lib/module/components/extends/area/AreaFocusTypes.js +3 -0
  124. package/lib/module/components/extends/area/AreaFocusTypes.js.map +1 -1
  125. package/lib/module/components/internal/DefaultRoadmapStyle.js +2 -0
  126. package/lib/module/components/internal/DefaultRoadmapStyle.js.map +1 -1
  127. package/lib/module/components/internal/GeojsonStyleUtils.js +21 -28
  128. package/lib/module/components/internal/GeojsonStyleUtils.js.map +1 -1
  129. package/lib/module/index.js +2 -0
  130. package/lib/module/index.js.map +1 -1
  131. package/lib/module/native/Map4dMapNativeModule.js +5 -0
  132. package/lib/module/native/Map4dMapNativeModule.js.map +1 -0
  133. package/lib/module/native/NativeModuleResolver.js +29 -0
  134. package/lib/module/native/NativeModuleResolver.js.map +1 -0
  135. package/lib/module/native/ViewManagerCommand.js +61 -0
  136. package/lib/module/native/ViewManagerCommand.js.map +1 -0
  137. package/lib/module/specs/NativeMap4dMap.js +5 -0
  138. package/lib/module/specs/NativeMap4dMap.js.map +1 -0
  139. package/lib/typescript/components/MFBanDoSo/constants.d.ts +11 -0
  140. package/lib/typescript/components/MFBanDoSo/constants.d.ts.map +1 -0
  141. package/lib/typescript/components/MFBanDoSo/helpers.d.ts +14 -0
  142. package/lib/typescript/components/MFBanDoSo/helpers.d.ts.map +1 -0
  143. package/lib/typescript/components/MFBanDoSo/propTypes.d.ts +2 -0
  144. package/lib/typescript/components/MFBanDoSo/propTypes.d.ts.map +1 -0
  145. package/lib/typescript/components/MFBanDoSo/styles.d.ts +336 -0
  146. package/lib/typescript/components/MFBanDoSo/styles.d.ts.map +1 -0
  147. package/lib/typescript/components/MFBanDoSo/ui.d.ts +32 -0
  148. package/lib/typescript/components/MFBanDoSo/ui.d.ts.map +1 -0
  149. package/lib/typescript/components/MFBanDoSo.d.ts +38 -0
  150. package/lib/typescript/components/MFBanDoSo.d.ts.map +1 -0
  151. package/lib/typescript/components/MFBuilding.d.ts +24 -0
  152. package/lib/typescript/components/MFBuilding.d.ts.map +1 -0
  153. package/lib/typescript/components/MFCircle.d.ts +24 -0
  154. package/lib/typescript/components/MFCircle.d.ts.map +1 -0
  155. package/lib/typescript/components/MFDirectionsRenderer.d.ts +19 -0
  156. package/lib/typescript/components/MFDirectionsRenderer.d.ts.map +1 -0
  157. package/lib/typescript/components/MFMapView.d.ts +66 -0
  158. package/lib/typescript/components/MFMapView.d.ts.map +1 -0
  159. package/lib/typescript/components/MFMarker.d.ts +26 -0
  160. package/lib/typescript/components/MFMarker.d.ts.map +1 -0
  161. package/lib/typescript/components/MFPOI.d.ts +24 -0
  162. package/lib/typescript/components/MFPOI.d.ts.map +1 -0
  163. package/lib/typescript/components/MFPolygon.d.ts +24 -0
  164. package/lib/typescript/components/MFPolygon.d.ts.map +1 -0
  165. package/lib/typescript/components/MFPolyline.d.ts +24 -0
  166. package/lib/typescript/components/MFPolyline.d.ts.map +1 -0
  167. package/lib/typescript/components/MFTileOverlay.d.ts +12 -0
  168. package/lib/typescript/components/MFTileOverlay.d.ts.map +1 -0
  169. package/lib/typescript/components/Map4dMapView.d.ts +8 -7
  170. package/lib/typescript/components/Map4dMapView.d.ts.map +1 -0
  171. package/lib/typescript/components/extends/AreaFocusManager.d.ts +34 -0
  172. package/lib/typescript/components/extends/AreaFocusManager.d.ts.map +1 -0
  173. package/lib/typescript/components/extends/AreaFocuser.d.ts +15 -0
  174. package/lib/typescript/components/extends/AreaFocuser.d.ts.map +1 -0
  175. package/lib/typescript/components/extends/BoundHelper.d.ts +11 -0
  176. package/lib/typescript/components/extends/BoundHelper.d.ts.map +1 -0
  177. package/lib/typescript/components/extends/area/AreaFocusAreas.d.ts +58 -0
  178. package/lib/typescript/components/extends/area/AreaFocusAreas.d.ts.map +1 -0
  179. package/lib/typescript/components/extends/area/AreaFocusGeometryUtils.d.ts +19 -0
  180. package/lib/typescript/components/extends/area/AreaFocusGeometryUtils.d.ts.map +1 -0
  181. package/lib/typescript/components/extends/area/AreaFocusSession.d.ts +14 -0
  182. package/lib/typescript/components/extends/area/AreaFocusSession.d.ts.map +1 -0
  183. package/lib/typescript/components/extends/area/AreaFocusTypes.d.ts +40 -0
  184. package/lib/typescript/components/extends/area/AreaFocusTypes.d.ts.map +1 -0
  185. package/lib/typescript/components/internal/DefaultRoadmapStyle.d.ts +820 -0
  186. package/lib/typescript/components/internal/DefaultRoadmapStyle.d.ts.map +1 -0
  187. package/lib/typescript/components/internal/GeojsonStyleUtils.d.ts +3 -0
  188. package/lib/typescript/components/internal/GeojsonStyleUtils.d.ts.map +1 -0
  189. package/lib/typescript/index.d.ts +13 -0
  190. package/lib/typescript/index.d.ts.map +1 -0
  191. package/lib/typescript/native/Map4dMapNativeModule.d.ts +2 -0
  192. package/lib/typescript/native/Map4dMapNativeModule.d.ts.map +1 -0
  193. package/lib/typescript/native/NativeModuleResolver.d.ts +3 -0
  194. package/lib/typescript/native/NativeModuleResolver.d.ts.map +1 -0
  195. package/lib/typescript/native/ViewManagerCommand.d.ts +11 -0
  196. package/lib/typescript/native/ViewManagerCommand.d.ts.map +1 -0
  197. package/package.json +27 -11
  198. package/src/components/MFBanDoSo/constants.js +38 -0
  199. package/src/components/MFBanDoSo/helpers.js +273 -0
  200. package/src/components/MFBanDoSo/propTypes.js +14 -0
  201. package/src/components/MFBanDoSo/styles.js +323 -0
  202. package/src/components/MFBanDoSo/ui.js +261 -0
  203. package/src/components/MFBanDoSo.js +280 -78
  204. package/src/components/MFBuilding.js +8 -48
  205. package/src/components/MFCircle.js +8 -48
  206. package/src/components/MFDirectionsRenderer.js +8 -47
  207. package/src/components/MFMapView.js +31 -53
  208. package/src/components/MFMarker.js +9 -50
  209. package/src/components/MFPOI.js +8 -48
  210. package/src/components/MFPolygon.js +8 -48
  211. package/src/components/MFPolyline.js +8 -48
  212. package/src/components/internal/GeojsonStyleUtils.js +3 -0
  213. package/src/native/Map4dMapNativeModule.js +3 -0
  214. package/src/native/NativeModuleResolver.js +33 -0
  215. package/src/native/ViewManagerCommand.js +82 -0
  216. package/src/specs/NativeMap4dMap.js +12 -0
  217. package/ios/Map4dMapViewManager.m +0 -34
@@ -0,0 +1,12 @@
1
+ export class MFTileOverlay extends React.Component<any, any, any> {
2
+ constructor(props: any);
3
+ constructor(props: any, context: any);
4
+ render(): React.JSX.Element;
5
+ }
6
+ export namespace MFTileOverlay {
7
+ export { propTypes };
8
+ }
9
+ import React from 'react';
10
+ declare const propTypes: any;
11
+ export {};
12
+ //# sourceMappingURL=MFTileOverlay.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MFTileOverlay.d.ts","sourceRoot":"","sources":["../../../src/components/MFTileOverlay.js"],"names":[],"mappings":"AAgCA;;;IACE,4BAIC;CACF;;;;kBArCiB,OAAO;AASzB,6BAoBE"}
@@ -1,7 +1,8 @@
1
- import { ViewStyle } from 'react-native';
2
- declare type Map4dMapProps = {
3
- color: string;
4
- style: ViewStyle;
5
- };
6
- export declare const Map4dMapView: import("react-native").HostComponent<Map4dMapProps> | (() => never);
7
- export {};
1
+ import { ViewStyle } from 'react-native';
2
+ type Map4dMapProps = {
3
+ color: string;
4
+ style: ViewStyle;
5
+ };
6
+ export declare const Map4dMapView: import("react-native").HostComponent<Map4dMapProps> | (() => never);
7
+ export {};
8
+ //# sourceMappingURL=Map4dMapView.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Map4dMapView.d.ts","sourceRoot":"","sources":["../../../src/components/Map4dMapView.tsx"],"names":[],"mappings":"AAAA,OAAO,EAIH,SAAS,EACV,MAAM,cAAc,CAAC;AAQtB,KAAK,aAAa,GAAG;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,SAAS,CAAC;CAClB,CAAC;AAIF,eAAO,MAAM,YAAY,qEAKlB,CAAC"}
@@ -0,0 +1,34 @@
1
+ export class AreaFocusManager {
2
+ constructor(mapView: any);
3
+ mapView: any;
4
+ currentSession: AreaFocusSession | null;
5
+ _focusArea(area: any, options: any): Promise<AreaFocusSession | null>;
6
+ _focusProvince(options: any): Promise<AreaFocusSession | null>;
7
+ /**
8
+ * @param {FocusOptions | null | undefined} focusOptions
9
+ * @returns {Promise<AreaFocusSession | null>}
10
+ */
11
+ focus(focusOptions: FocusOptions | null | undefined): Promise<AreaFocusSession | null>;
12
+ _getIndustrialEconomicType(type: any): any;
13
+ clear(): void;
14
+ _fitBounds(bounds: any, options: any): void;
15
+ _getProvinceName(options: any): any;
16
+ _getProvinceId(options: any): any;
17
+ }
18
+ export type FocusDisplay = "normal" | "highlight";
19
+ export type FocusPadding = {
20
+ left?: number;
21
+ right?: number;
22
+ top?: number;
23
+ bottom?: number;
24
+ };
25
+ export type FocusType = "province" | "industrialZone" | "economicZone" | "ecoIndustrialZone" | "freeTradeZone" | "nonTariffZone" | "otherZoneModel" | number;
26
+ export type FocusOptions = {
27
+ type: FocusType;
28
+ id?: number | undefined;
29
+ name?: string | undefined;
30
+ display?: FocusDisplay | undefined;
31
+ padding?: FocusPadding | undefined;
32
+ };
33
+ import { AreaFocusSession } from './area/AreaFocusSession';
34
+ //# sourceMappingURL=AreaFocusManager.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AreaFocusManager.d.ts","sourceRoot":"","sources":["../../../../src/components/extends/AreaFocusManager.js"],"names":[],"mappings":"AAyCA;IACE,0BAGC;IAFC,aAAsB;IACtB,wCAA0B;IAG5B,sEA0BC;IAED,+DAgBC;IAED;;;OAGG;IACH,oBAHW,YAAY,GAAG,IAAI,GAAG,SAAS,GAC7B,OAAO,CAAC,gBAAgB,GAAG,IAAI,CAAC,CA6B5C;IAED,2CAWC;IAED,cAKC;IAED,4CAkBC;IAED,oCAoBC;IAED,kCAMC;CACF;2BA9LY,QAAQ,GAAG,WAAW;2BAItB;IAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,GAAG,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAA;CAAC;wBAI9D,UAAU,GAAG,gBAAgB,GAAG,cAAc,GAAG,mBAAmB,GAAG,eAAe,GAAG,eAAe,GAAG,gBAAgB,GAAG,MAAM;;UAKnI,SAAS;SACT,MAAM,YAAC;WACP,MAAM,YAAC;cACP,YAAY,YAAC;cACb,YAAY,YAAC;;iCAtBI,yBAAyB"}
@@ -0,0 +1,15 @@
1
+ export class AreaFocuser {
2
+ constructor(areaFocusManager: any);
3
+ _areaFocusManager: any;
4
+ /**
5
+ * @param {{name?: string, highlight?: boolean}=} options
6
+ */
7
+ focusProvince(options?: {
8
+ name?: string;
9
+ highlight?: boolean;
10
+ } | undefined): Promise<void>;
11
+ _clear(): void;
12
+ _getProvinceName(options: any): any;
13
+ _shouldHighlight(options: any): boolean;
14
+ }
15
+ //# sourceMappingURL=AreaFocuser.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AreaFocuser.d.ts","sourceRoot":"","sources":["../../../../src/components/extends/AreaFocuser.js"],"names":[],"mappings":"AAAA;IAEE,mCAEC;IADC,uBAAyC;IAG3C;;OAEG;IACH,wBAFW;QAAC,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,SAAS,CAAC,EAAE,OAAO,CAAA;KAAC,YAAC,iBAkB/C;IAED,eAIC;IAED,oCAmBC;IAED,wCAMC;CACF"}
@@ -0,0 +1,11 @@
1
+ export class BoundHelper {
2
+ static createEmptyBounds(): {
3
+ minLat: number;
4
+ minLng: number;
5
+ maxLat: number;
6
+ maxLng: number;
7
+ };
8
+ static updateBounds(bounds: any, lat: any, lng: any): void;
9
+ static isValidBounds(bounds: any): boolean;
10
+ }
11
+ //# sourceMappingURL=BoundHelper.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BoundHelper.d.ts","sourceRoot":"","sources":["../../../../src/components/extends/BoundHelper.js"],"names":[],"mappings":"AAAA;IACE;;;;;MAOC;IAED,2DAKC;IAED,2CAWC;CACF"}
@@ -0,0 +1,58 @@
1
+ export class ProvinceArea {
2
+ static fromName(name: any): ProvinceArea;
3
+ constructor(id: any);
4
+ id: any;
5
+ name: any;
6
+ loaded: boolean;
7
+ geometryData: {
8
+ name: any;
9
+ geometry: any;
10
+ } | null;
11
+ bounds: {
12
+ minLat: number;
13
+ minLng: number;
14
+ maxLat: number;
15
+ maxLng: number;
16
+ } | null;
17
+ load(): Promise<boolean>;
18
+ getGeometryData(): {
19
+ name: any;
20
+ geometry: any;
21
+ } | null;
22
+ getBounds(): {
23
+ minLat: number;
24
+ minLng: number;
25
+ maxLat: number;
26
+ maxLng: number;
27
+ } | null;
28
+ getId(): any;
29
+ }
30
+ export class IndustrialEconomicArea {
31
+ constructor(type: any, id: any);
32
+ type: any;
33
+ id: any;
34
+ loaded: boolean;
35
+ geometryData: {
36
+ name: any;
37
+ geometry: any;
38
+ } | null;
39
+ bounds: {
40
+ minLat: number;
41
+ minLng: number;
42
+ maxLat: number;
43
+ maxLng: number;
44
+ } | null;
45
+ load(): Promise<boolean>;
46
+ getGeometryData(): {
47
+ name: any;
48
+ geometry: any;
49
+ } | null;
50
+ getBounds(): {
51
+ minLat: number;
52
+ minLng: number;
53
+ maxLat: number;
54
+ maxLng: number;
55
+ } | null;
56
+ getId(): any;
57
+ }
58
+ //# sourceMappingURL=AreaFocusAreas.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AreaFocusAreas.d.ts","sourceRoot":"","sources":["../../../../../src/components/extends/area/AreaFocusAreas.js"],"names":[],"mappings":"AAcA;IASE,yCAIC;IAZD,qBAMC;IALC,QAAY;IACZ,UAAgB;IAChB,gBAAmB;IACnB;;;aAAwB;IACxB;;;;;aAAkB;IASpB,yBA6CC;IAED;;;aAEC;IAED;;;;;aAEC;IAED,aAEC;CACF;AAED;IACE,gCAMC;IALC,UAAgB;IAChB,QAAY;IACZ,gBAAmB;IACnB;;;aAAwB;IACxB;;;;;aAAkB;IAGpB,yBA+CC;IAED;;;aAEC;IAED;;;;;aAEC;IAED,aAEC;CACF"}
@@ -0,0 +1,19 @@
1
+ export const WORLD_MASK_PATH: {
2
+ longitude: number;
3
+ latitude: number;
4
+ }[];
5
+ export function parseViewbox(viewbox: any): {
6
+ minLat: any;
7
+ minLng: any;
8
+ maxLat: any;
9
+ maxLng: any;
10
+ } | null;
11
+ export function getViewboxFromGeometry(geometry: any): {
12
+ minLat: number;
13
+ minLng: number;
14
+ maxLat: number;
15
+ maxLng: number;
16
+ } | null;
17
+ export function areaGeometryToPolygonPaths(geometry: any): any[];
18
+ export function createWorldMaskPaths(geometry: any): any[];
19
+ //# sourceMappingURL=AreaFocusGeometryUtils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AreaFocusGeometryUtils.d.ts","sourceRoot":"","sources":["../../../../../src/components/extends/area/AreaFocusGeometryUtils.js"],"names":[],"mappings":"AAEA;;;IAMC;AAED;;;;;SAwBC;AAED;;;;;SA6CC;AAkCD,iEA+BC;AAED,2DAOC"}
@@ -0,0 +1,14 @@
1
+ export class AreaFocusSession {
2
+ constructor(mapView: any, area: any, options: any);
3
+ mapView: any;
4
+ area: any;
5
+ options: any;
6
+ polygonIds: any[];
7
+ render(): void;
8
+ destroy(): void;
9
+ renderNormal(geometry: any): void;
10
+ renderHighlight(geometry: any): void;
11
+ addPolygon(polygon: any): void;
12
+ clearPolygons(): void;
13
+ }
14
+ //# sourceMappingURL=AreaFocusSession.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AreaFocusSession.d.ts","sourceRoot":"","sources":["../../../../../src/components/extends/area/AreaFocusSession.js"],"names":[],"mappings":"AAKA;IACE,mDAKC;IAJC,aAAsB;IACtB,UAAgB;IAChB,aAA4B;IAC5B,kBAAoB;IAGtB,eAgBC;IAED,gBAEC;IAED,kCAaC;IAED,qCAmBC;IAED,+BAUC;IAED,sBAWC;CACF"}
@@ -0,0 +1,40 @@
1
+ export type PointGeometry = {
2
+ type: "Point";
3
+ coordinates: [number, number];
4
+ };
5
+ export type PolygonCoordinates = Array<Array<[number, number]>>;
6
+ export type PolygonGeometry = {
7
+ type: "Polygon";
8
+ coordinates: PolygonCoordinates;
9
+ };
10
+ export type MultiPolygonGeometry = {
11
+ type: "MultiPolygon";
12
+ coordinates: Array<PolygonCoordinates>;
13
+ };
14
+ export type AreaGeometry = PointGeometry | PolygonGeometry | MultiPolygonGeometry;
15
+ export type GeometryData = {
16
+ name?: string | undefined;
17
+ geometry?: AreaGeometry | undefined;
18
+ };
19
+ export type FocusableArea = {
20
+ loaded: boolean;
21
+ editable: boolean;
22
+ load: () => Promise<boolean>;
23
+ getGeometryData: () => GeometryData | null;
24
+ getBounds: () => {
25
+ minLat: number;
26
+ minLng: number;
27
+ maxLat: number;
28
+ maxLng: number;
29
+ } | null;
30
+ getId?: (() => string | number | null) | undefined;
31
+ };
32
+ export namespace IndustrialEconomicType {
33
+ let INDUSTRIAL_ZONE: number;
34
+ let ECONOMIC_ZONE: number;
35
+ let ECO_INDUSTRIAL_ZONE: number;
36
+ let FREE_TRADE_ZONE: number;
37
+ let NON_TARIFF_ZONE: number;
38
+ let OTHER_ZONE_MODEL: number;
39
+ }
40
+ //# sourceMappingURL=AreaFocusTypes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AreaFocusTypes.d.ts","sourceRoot":"","sources":["../../../../../src/components/extends/area/AreaFocusTypes.js"],"names":[],"mappings":"4BACa;IAAC,IAAI,EAAE,OAAO,CAAC;IAAC,WAAW,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;CAAC;iCAC9C,KAAK,CAAC,KAAK,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;8BAC9B;IAAC,IAAI,EAAE,SAAS,CAAC;IAAC,WAAW,EAAE,kBAAkB,CAAA;CAAC;mCAClD;IAAC,IAAI,EAAE,cAAc,CAAC;IAAC,WAAW,EAAE,KAAK,CAAC,kBAAkB,CAAC,CAAA;CAAC;2BAC9D,aAAa,GAAG,eAAe,GAAG,oBAAoB;;WAKrD,MAAM,YAAC;eACP,YAAY,YAAC;;;YAKb,OAAO;cACP,OAAO;UACP,MAAM,OAAO,CAAC,OAAO,CAAC;qBACtB,MAAM,YAAY,GAAG,IAAI;eACzB,MAAM;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAC,GAAG,IAAI;YAC7E,CAAA,MAAM,MAAM,GAAG,MAAM,GAAG,IAAI,aAAC"}