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,820 @@
1
+ export default defaultRoadmapStyle;
2
+ declare const defaultRoadmapStyle: {
3
+ "web-version": string;
4
+ "mobile-version": string;
5
+ sources: {
6
+ map4d: {
7
+ url: string;
8
+ };
9
+ geojson: {
10
+ type: string;
11
+ url: string;
12
+ };
13
+ };
14
+ images: {
15
+ pois: {
16
+ type: string;
17
+ url: string[];
18
+ width: number;
19
+ height: number;
20
+ };
21
+ };
22
+ patterns: {
23
+ dashdash: {
24
+ type: string;
25
+ gap: number;
26
+ length: number;
27
+ repeat: number;
28
+ };
29
+ dotdot: {
30
+ type: string;
31
+ repeat: number;
32
+ };
33
+ };
34
+ layers: ({
35
+ id: string;
36
+ type: string;
37
+ filter: null;
38
+ draw: {
39
+ color: (string | number)[][];
40
+ width?: undefined;
41
+ outline_width?: undefined;
42
+ outline_color?: undefined;
43
+ text_size?: undefined;
44
+ text_color?: undefined;
45
+ text_halo_color?: undefined;
46
+ pattern?: undefined;
47
+ icon_image?: undefined;
48
+ icon_index?: undefined;
49
+ icon_color?: undefined;
50
+ };
51
+ metadata: {
52
+ key: string;
53
+ name: string;
54
+ isDefault: boolean;
55
+ group?: undefined;
56
+ };
57
+ source?: undefined;
58
+ source_layer?: undefined;
59
+ } | {
60
+ id: string;
61
+ type: string;
62
+ source: string;
63
+ source_layer: string;
64
+ filter: null;
65
+ draw: {
66
+ color: string;
67
+ width?: undefined;
68
+ outline_width?: undefined;
69
+ outline_color?: undefined;
70
+ text_size?: undefined;
71
+ text_color?: undefined;
72
+ text_halo_color?: undefined;
73
+ pattern?: undefined;
74
+ icon_image?: undefined;
75
+ icon_index?: undefined;
76
+ icon_color?: undefined;
77
+ };
78
+ metadata: {
79
+ name: string;
80
+ key: string;
81
+ isDefault: boolean;
82
+ group?: undefined;
83
+ };
84
+ } | {
85
+ id: string;
86
+ type: string;
87
+ source: string;
88
+ source_layer: string;
89
+ filter: null;
90
+ draw: {
91
+ color: string;
92
+ width: number[][];
93
+ outline_width?: undefined;
94
+ outline_color?: undefined;
95
+ text_size?: undefined;
96
+ text_color?: undefined;
97
+ text_halo_color?: undefined;
98
+ pattern?: undefined;
99
+ icon_image?: undefined;
100
+ icon_index?: undefined;
101
+ icon_color?: undefined;
102
+ };
103
+ metadata: {
104
+ name: string;
105
+ key: string;
106
+ isDefault: boolean;
107
+ group?: undefined;
108
+ };
109
+ } | {
110
+ id: string;
111
+ type: string;
112
+ source: string;
113
+ source_layer: string;
114
+ filter: {
115
+ kind: string[];
116
+ kind_detail?: undefined;
117
+ };
118
+ draw: {
119
+ width: number[][];
120
+ color: string;
121
+ outline_width: number[][];
122
+ outline_color: string;
123
+ text_size?: undefined;
124
+ text_color?: undefined;
125
+ text_halo_color?: undefined;
126
+ pattern?: undefined;
127
+ icon_image?: undefined;
128
+ icon_index?: undefined;
129
+ icon_color?: undefined;
130
+ };
131
+ metadata: {
132
+ name: string;
133
+ group: string;
134
+ isDefault: boolean;
135
+ key?: undefined;
136
+ };
137
+ } | {
138
+ id: string;
139
+ type: string;
140
+ source: string;
141
+ source_layer: string;
142
+ filter: {
143
+ kind: string[];
144
+ kind_detail?: undefined;
145
+ };
146
+ draw: {
147
+ text_size: number[][];
148
+ text_color: string;
149
+ text_halo_color: string;
150
+ color?: undefined;
151
+ width?: undefined;
152
+ outline_width?: undefined;
153
+ outline_color?: undefined;
154
+ pattern?: undefined;
155
+ icon_image?: undefined;
156
+ icon_index?: undefined;
157
+ icon_color?: undefined;
158
+ };
159
+ metadata: {
160
+ key: string;
161
+ group: string;
162
+ isDefault: boolean;
163
+ name?: undefined;
164
+ };
165
+ } | {
166
+ id: string;
167
+ type: string;
168
+ source: string;
169
+ source_layer: string;
170
+ filter: {
171
+ kind: string[];
172
+ kind_detail: string[];
173
+ };
174
+ draw: {
175
+ width: number[][];
176
+ color: string;
177
+ outline_width: number[][];
178
+ outline_color: string;
179
+ text_size?: undefined;
180
+ text_color?: undefined;
181
+ text_halo_color?: undefined;
182
+ pattern?: undefined;
183
+ icon_image?: undefined;
184
+ icon_index?: undefined;
185
+ icon_color?: undefined;
186
+ };
187
+ metadata: {
188
+ name: string;
189
+ group: string;
190
+ isDefault: boolean;
191
+ key?: undefined;
192
+ };
193
+ } | {
194
+ id: string;
195
+ type: string;
196
+ source: string;
197
+ source_layer: string;
198
+ filter: {
199
+ kind: string[];
200
+ kind_detail: string[];
201
+ };
202
+ draw: {
203
+ text_size: number;
204
+ text_color: string;
205
+ text_halo_color: string;
206
+ color?: undefined;
207
+ width?: undefined;
208
+ outline_width?: undefined;
209
+ outline_color?: undefined;
210
+ pattern?: undefined;
211
+ icon_image?: undefined;
212
+ icon_index?: undefined;
213
+ icon_color?: undefined;
214
+ };
215
+ metadata: {
216
+ key: string;
217
+ group: string;
218
+ isDefault: boolean;
219
+ name?: undefined;
220
+ };
221
+ } | {
222
+ id: string;
223
+ type: string;
224
+ source: string;
225
+ source_layer: string;
226
+ filter: {
227
+ kind: string[];
228
+ kind_detail: string[];
229
+ };
230
+ draw: {
231
+ width: number[][];
232
+ color: (string | number)[][];
233
+ outline_width: number[][];
234
+ outline_color: string;
235
+ text_size?: undefined;
236
+ text_color?: undefined;
237
+ text_halo_color?: undefined;
238
+ pattern?: undefined;
239
+ icon_image?: undefined;
240
+ icon_index?: undefined;
241
+ icon_color?: undefined;
242
+ };
243
+ metadata: {
244
+ name: string;
245
+ group: string;
246
+ isDefault: boolean;
247
+ key?: undefined;
248
+ };
249
+ } | {
250
+ id: string;
251
+ type: string;
252
+ source: string;
253
+ source_layer: string;
254
+ filter: {
255
+ kind: string[];
256
+ kind_detail: string[];
257
+ };
258
+ draw: {
259
+ width: number[][];
260
+ color: (string | number)[][];
261
+ outline_width: number[][];
262
+ outline_color: (string | number)[][];
263
+ text_size?: undefined;
264
+ text_color?: undefined;
265
+ text_halo_color?: undefined;
266
+ pattern?: undefined;
267
+ icon_image?: undefined;
268
+ icon_index?: undefined;
269
+ icon_color?: undefined;
270
+ };
271
+ metadata: {
272
+ name: string;
273
+ group: string;
274
+ isDefault: boolean;
275
+ key?: undefined;
276
+ };
277
+ } | {
278
+ id: string;
279
+ type: string;
280
+ source: string;
281
+ source_layer: string;
282
+ filter: {
283
+ kind: string[];
284
+ kind_detail: string[];
285
+ };
286
+ draw: {
287
+ text_size: number[][];
288
+ text_color: string;
289
+ text_halo_color: string;
290
+ color?: undefined;
291
+ width?: undefined;
292
+ outline_width?: undefined;
293
+ outline_color?: undefined;
294
+ pattern?: undefined;
295
+ icon_image?: undefined;
296
+ icon_index?: undefined;
297
+ icon_color?: undefined;
298
+ };
299
+ metadata: {
300
+ key: string;
301
+ group: string;
302
+ isDefault: boolean;
303
+ name?: undefined;
304
+ };
305
+ } | {
306
+ id: string;
307
+ type: string;
308
+ source: string;
309
+ source_layer: string;
310
+ filter: {
311
+ kind: string[];
312
+ kind_detail?: undefined;
313
+ };
314
+ draw: {
315
+ width: number[][];
316
+ color: string;
317
+ outline_width: number[][];
318
+ outline_color: (string | number)[][];
319
+ text_size?: undefined;
320
+ text_color?: undefined;
321
+ text_halo_color?: undefined;
322
+ pattern?: undefined;
323
+ icon_image?: undefined;
324
+ icon_index?: undefined;
325
+ icon_color?: undefined;
326
+ };
327
+ metadata: {
328
+ name: string;
329
+ group: string;
330
+ isDefault: boolean;
331
+ key?: undefined;
332
+ };
333
+ } | {
334
+ id: string;
335
+ type: string;
336
+ source: string;
337
+ source_layer: string;
338
+ filter: {
339
+ kind: string[];
340
+ kind_detail?: undefined;
341
+ };
342
+ draw: {
343
+ width: number[][];
344
+ color: (string | number)[][];
345
+ outline_width: number[][];
346
+ outline_color: string;
347
+ pattern: string;
348
+ text_size?: undefined;
349
+ text_color?: undefined;
350
+ text_halo_color?: undefined;
351
+ icon_image?: undefined;
352
+ icon_index?: undefined;
353
+ icon_color?: undefined;
354
+ };
355
+ metadata: {
356
+ name: string;
357
+ group: string;
358
+ isDefault: boolean;
359
+ key?: undefined;
360
+ };
361
+ } | {
362
+ id: string;
363
+ type: string;
364
+ source: string;
365
+ source_layer: string;
366
+ filter: {
367
+ kind: string[];
368
+ kind_detail?: undefined;
369
+ };
370
+ draw: {
371
+ width: number[][];
372
+ color: string;
373
+ outline_width: number;
374
+ outline_color: (string | number)[][];
375
+ pattern: string;
376
+ text_size?: undefined;
377
+ text_color?: undefined;
378
+ text_halo_color?: undefined;
379
+ icon_image?: undefined;
380
+ icon_index?: undefined;
381
+ icon_color?: undefined;
382
+ };
383
+ metadata: {
384
+ name: string;
385
+ group: string;
386
+ isDefault: boolean;
387
+ key?: undefined;
388
+ };
389
+ } | {
390
+ id: string;
391
+ type: string;
392
+ source: string;
393
+ source_layer: string;
394
+ filter: {
395
+ kind: string[];
396
+ kind_detail?: undefined;
397
+ };
398
+ draw: {
399
+ text_size: number;
400
+ text_color: string;
401
+ text_halo_color: string;
402
+ color?: undefined;
403
+ width?: undefined;
404
+ outline_width?: undefined;
405
+ outline_color?: undefined;
406
+ pattern?: undefined;
407
+ icon_image?: undefined;
408
+ icon_index?: undefined;
409
+ icon_color?: undefined;
410
+ };
411
+ metadata: {
412
+ key: string;
413
+ group: string;
414
+ isDefault: boolean;
415
+ name?: undefined;
416
+ };
417
+ } | {
418
+ id: string;
419
+ type: string;
420
+ source: string;
421
+ source_layer: string;
422
+ draw: {
423
+ width: number[][];
424
+ color: string;
425
+ outline_width: number[][];
426
+ outline_color: (string | number)[][];
427
+ text_size?: undefined;
428
+ text_color?: undefined;
429
+ text_halo_color?: undefined;
430
+ pattern?: undefined;
431
+ icon_image?: undefined;
432
+ icon_index?: undefined;
433
+ icon_color?: undefined;
434
+ };
435
+ metadata: {
436
+ name: string;
437
+ group: string;
438
+ isDefault: boolean;
439
+ key?: undefined;
440
+ };
441
+ filter?: undefined;
442
+ } | {
443
+ id: string;
444
+ type: string;
445
+ source: string;
446
+ source_layer: string;
447
+ draw: {
448
+ text_size: number[][];
449
+ text_color: string;
450
+ text_halo_color: string;
451
+ color?: undefined;
452
+ width?: undefined;
453
+ outline_width?: undefined;
454
+ outline_color?: undefined;
455
+ pattern?: undefined;
456
+ icon_image?: undefined;
457
+ icon_index?: undefined;
458
+ icon_color?: undefined;
459
+ };
460
+ metadata: {
461
+ key: string;
462
+ group: string;
463
+ isDefault: boolean;
464
+ name?: undefined;
465
+ };
466
+ filter?: undefined;
467
+ } | {
468
+ id: string;
469
+ type: string;
470
+ source: string;
471
+ source_layer: string;
472
+ draw: {
473
+ width: number[][];
474
+ color?: undefined;
475
+ outline_width?: undefined;
476
+ outline_color?: undefined;
477
+ text_size?: undefined;
478
+ text_color?: undefined;
479
+ text_halo_color?: undefined;
480
+ pattern?: undefined;
481
+ icon_image?: undefined;
482
+ icon_index?: undefined;
483
+ icon_color?: undefined;
484
+ };
485
+ metadata: {
486
+ key: string;
487
+ group: string;
488
+ isDefault: boolean;
489
+ name?: undefined;
490
+ };
491
+ filter?: undefined;
492
+ } | {
493
+ id: string;
494
+ type: string;
495
+ source: string;
496
+ source_layer: string;
497
+ draw: {
498
+ text_size: number;
499
+ text_color: string;
500
+ text_halo_color: string;
501
+ color?: undefined;
502
+ width?: undefined;
503
+ outline_width?: undefined;
504
+ outline_color?: undefined;
505
+ pattern?: undefined;
506
+ icon_image?: undefined;
507
+ icon_index?: undefined;
508
+ icon_color?: undefined;
509
+ };
510
+ metadata: {
511
+ key: string;
512
+ group: string;
513
+ isDefault: boolean;
514
+ name?: undefined;
515
+ };
516
+ filter?: undefined;
517
+ } | {
518
+ id: string;
519
+ type: string;
520
+ source: string;
521
+ source_layer: string;
522
+ filter: {
523
+ kind_detail: string[];
524
+ kind?: undefined;
525
+ };
526
+ draw: {
527
+ width: number[][];
528
+ color: string;
529
+ outline_width?: undefined;
530
+ outline_color?: undefined;
531
+ text_size?: undefined;
532
+ text_color?: undefined;
533
+ text_halo_color?: undefined;
534
+ pattern?: undefined;
535
+ icon_image?: undefined;
536
+ icon_index?: undefined;
537
+ icon_color?: undefined;
538
+ };
539
+ metadata: {
540
+ key: string;
541
+ group: string;
542
+ isDefault: boolean;
543
+ name?: undefined;
544
+ };
545
+ } | {
546
+ id: string;
547
+ type: string;
548
+ source: string;
549
+ source_layer: string;
550
+ filter: {
551
+ kind_detail: string[];
552
+ kind?: undefined;
553
+ };
554
+ draw: {
555
+ text_size: number;
556
+ text_color: string;
557
+ text_halo_color: string;
558
+ color?: undefined;
559
+ width?: undefined;
560
+ outline_width?: undefined;
561
+ outline_color?: undefined;
562
+ pattern?: undefined;
563
+ icon_image?: undefined;
564
+ icon_index?: undefined;
565
+ icon_color?: undefined;
566
+ };
567
+ metadata: {
568
+ key: string;
569
+ group: string;
570
+ isDefault: boolean;
571
+ name?: undefined;
572
+ };
573
+ } | {
574
+ id: string;
575
+ type: string;
576
+ source: string;
577
+ source_layer: string;
578
+ filter: {
579
+ kind: string[];
580
+ kind_detail?: undefined;
581
+ };
582
+ draw: {
583
+ width: number[][];
584
+ pattern: string;
585
+ color: (string | number)[][];
586
+ outline_width?: undefined;
587
+ outline_color?: undefined;
588
+ text_size?: undefined;
589
+ text_color?: undefined;
590
+ text_halo_color?: undefined;
591
+ icon_image?: undefined;
592
+ icon_index?: undefined;
593
+ icon_color?: undefined;
594
+ };
595
+ metadata: {
596
+ key: string;
597
+ group: string;
598
+ isDefault: boolean;
599
+ name?: undefined;
600
+ };
601
+ } | {
602
+ id: string;
603
+ type: string;
604
+ source: string;
605
+ source_layer: string;
606
+ filter: {
607
+ kind: string[];
608
+ kind_detail?: undefined;
609
+ };
610
+ draw: {
611
+ width: number[][];
612
+ pattern: string;
613
+ color: string;
614
+ outline_width?: undefined;
615
+ outline_color?: undefined;
616
+ text_size?: undefined;
617
+ text_color?: undefined;
618
+ text_halo_color?: undefined;
619
+ icon_image?: undefined;
620
+ icon_index?: undefined;
621
+ icon_color?: undefined;
622
+ };
623
+ metadata: {
624
+ key: string;
625
+ group: string;
626
+ isDefault: boolean;
627
+ name?: undefined;
628
+ };
629
+ } | {
630
+ id: string;
631
+ type: string;
632
+ source: string;
633
+ source_layer: string;
634
+ filter: {
635
+ kind: string;
636
+ kind_detail?: undefined;
637
+ };
638
+ draw: {
639
+ text_size: number[][];
640
+ text_color: string;
641
+ text_halo_color: string;
642
+ color?: undefined;
643
+ width?: undefined;
644
+ outline_width?: undefined;
645
+ outline_color?: undefined;
646
+ pattern?: undefined;
647
+ icon_image?: undefined;
648
+ icon_index?: undefined;
649
+ icon_color?: undefined;
650
+ };
651
+ metadata: {
652
+ key: string;
653
+ group: string;
654
+ isDefault: boolean;
655
+ name?: undefined;
656
+ };
657
+ } | {
658
+ id: string;
659
+ type: string;
660
+ source: string;
661
+ source_layer: string;
662
+ draw: {
663
+ icon_image: string;
664
+ icon_index: number;
665
+ icon_color: string;
666
+ text_size: number;
667
+ text_color: string;
668
+ text_halo_color: string;
669
+ color?: undefined;
670
+ width?: undefined;
671
+ outline_width?: undefined;
672
+ outline_color?: undefined;
673
+ pattern?: undefined;
674
+ };
675
+ metadata: {
676
+ key: string;
677
+ group: string;
678
+ isDefault: boolean;
679
+ name?: undefined;
680
+ };
681
+ filter?: undefined;
682
+ } | {
683
+ id: string;
684
+ type: string;
685
+ source: string;
686
+ source_layer: string;
687
+ filter: {
688
+ kind: string[];
689
+ kind_detail?: undefined;
690
+ };
691
+ draw: {
692
+ icon_image: string;
693
+ icon_index: number;
694
+ icon_color: string;
695
+ text_size: number;
696
+ text_color: string;
697
+ text_halo_color: string;
698
+ color?: undefined;
699
+ width?: undefined;
700
+ outline_width?: undefined;
701
+ outline_color?: undefined;
702
+ pattern?: undefined;
703
+ };
704
+ metadata: {
705
+ key: string;
706
+ group: string;
707
+ isDefault: boolean;
708
+ name?: undefined;
709
+ };
710
+ } | {
711
+ id: string;
712
+ type: string;
713
+ source: string;
714
+ source_layer: string;
715
+ draw: {
716
+ color?: undefined;
717
+ width?: undefined;
718
+ outline_width?: undefined;
719
+ outline_color?: undefined;
720
+ text_size?: undefined;
721
+ text_color?: undefined;
722
+ text_halo_color?: undefined;
723
+ pattern?: undefined;
724
+ icon_image?: undefined;
725
+ icon_index?: undefined;
726
+ icon_color?: undefined;
727
+ };
728
+ metadata: {
729
+ key: string;
730
+ group: string;
731
+ isDefault: boolean;
732
+ name?: undefined;
733
+ };
734
+ filter?: undefined;
735
+ } | {
736
+ id: string;
737
+ type: string;
738
+ source: string;
739
+ source_layer: string;
740
+ filter: {
741
+ kind: string[];
742
+ kind_detail?: undefined;
743
+ };
744
+ draw: {
745
+ color: string;
746
+ width?: undefined;
747
+ outline_width?: undefined;
748
+ outline_color?: undefined;
749
+ text_size?: undefined;
750
+ text_color?: undefined;
751
+ text_halo_color?: undefined;
752
+ pattern?: undefined;
753
+ icon_image?: undefined;
754
+ icon_index?: undefined;
755
+ icon_color?: undefined;
756
+ };
757
+ metadata: {
758
+ key: string;
759
+ group: string;
760
+ isDefault: boolean;
761
+ name?: undefined;
762
+ };
763
+ } | {
764
+ id: string;
765
+ type: string;
766
+ source: string;
767
+ source_layer: string;
768
+ draw: {
769
+ color: string;
770
+ width?: undefined;
771
+ outline_width?: undefined;
772
+ outline_color?: undefined;
773
+ text_size?: undefined;
774
+ text_color?: undefined;
775
+ text_halo_color?: undefined;
776
+ pattern?: undefined;
777
+ icon_image?: undefined;
778
+ icon_index?: undefined;
779
+ icon_color?: undefined;
780
+ };
781
+ metadata: {
782
+ key: string;
783
+ group: string;
784
+ isDefault: boolean;
785
+ name?: undefined;
786
+ };
787
+ filter?: undefined;
788
+ } | {
789
+ id: string;
790
+ type: string;
791
+ source: string;
792
+ source_layer: string;
793
+ filter: {
794
+ kind: string[];
795
+ kind_detail: string[];
796
+ };
797
+ draw: {
798
+ color: string;
799
+ width?: undefined;
800
+ outline_width?: undefined;
801
+ outline_color?: undefined;
802
+ text_size?: undefined;
803
+ text_color?: undefined;
804
+ text_halo_color?: undefined;
805
+ pattern?: undefined;
806
+ icon_image?: undefined;
807
+ icon_index?: undefined;
808
+ icon_color?: undefined;
809
+ };
810
+ metadata: {
811
+ key: string;
812
+ group: string;
813
+ isDefault: boolean;
814
+ name?: undefined;
815
+ };
816
+ })[];
817
+ "tool-version": string;
818
+ version: number;
819
+ };
820
+ //# sourceMappingURL=DefaultRoadmapStyle.d.ts.map