react-native-map4d-map-dtqg 0.1.0 → 0.1.2

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 (210) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +133 -41
  3. package/android/.gradle/8.9/checksums/checksums.lock +0 -0
  4. package/android/.gradle/8.9/dependencies-accessors/gc.properties +0 -0
  5. package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
  6. package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
  7. package/android/.gradle/8.9/gc.properties +0 -0
  8. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  9. package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
  10. package/android/.gradle/vcs-1/gc.properties +0 -0
  11. package/android/build.gradle +60 -60
  12. package/android/src/main/AndroidManifest.xml +4 -4
  13. package/android/src/main/java/com/reactnativemap4dmap/ImageUtils.java +87 -87
  14. package/android/src/main/java/com/reactnativemap4dmap/Map4dMapModule.java +298 -298
  15. package/android/src/main/java/com/reactnativemap4dmap/Map4dMapPackage.java +35 -35
  16. package/android/src/main/java/com/reactnativemap4dmap/Map4dMapViewManager.java +31 -31
  17. package/android/src/main/java/com/reactnativemap4dmap/RMFBuilding.java +167 -167
  18. package/android/src/main/java/com/reactnativemap4dmap/RMFBuildingManager.java +121 -121
  19. package/android/src/main/java/com/reactnativemap4dmap/RMFCircle.java +105 -105
  20. package/android/src/main/java/com/reactnativemap4dmap/RMFCircleManager.java +121 -121
  21. package/android/src/main/java/com/reactnativemap4dmap/RMFDirectionsRenderer.java +502 -502
  22. package/android/src/main/java/com/reactnativemap4dmap/RMFDirectionsRendererManager.java +143 -143
  23. package/android/src/main/java/com/reactnativemap4dmap/RMFFeature.java +17 -17
  24. package/android/src/main/java/com/reactnativemap4dmap/RMFMapView.java +1172 -1172
  25. package/android/src/main/java/com/reactnativemap4dmap/RMFMapViewManager.java +231 -226
  26. package/android/src/main/java/com/reactnativemap4dmap/RMFMarker.java +412 -412
  27. package/android/src/main/java/com/reactnativemap4dmap/RMFMarkerManager.java +211 -211
  28. package/android/src/main/java/com/reactnativemap4dmap/RMFPOI.java +222 -222
  29. package/android/src/main/java/com/reactnativemap4dmap/RMFPOIManager.java +119 -119
  30. package/android/src/main/java/com/reactnativemap4dmap/RMFPolygon.java +172 -172
  31. package/android/src/main/java/com/reactnativemap4dmap/RMFPolygonManager.java +147 -147
  32. package/android/src/main/java/com/reactnativemap4dmap/RMFPolyline.java +146 -146
  33. package/android/src/main/java/com/reactnativemap4dmap/RMFPolylineManager.java +137 -137
  34. package/android/src/main/java/com/reactnativemap4dmap/RMFTileOverlay.java +95 -95
  35. package/android/src/main/java/com/reactnativemap4dmap/RMFTileOverlayManager.java +64 -64
  36. package/android/src/main/java/com/reactnativemap4dmap/SizeReportingShadowNode.java +31 -31
  37. package/android/src/main/java/com/reactnativemap4dmap/ViewAttacherGroup.java +31 -31
  38. package/android/src/main/java/com/reactnativemap4dmap/ViewChangesTracker.java +70 -70
  39. package/android/src/main/java/vn/map4d/map/annotations/RMFBitmapDescriptor.java +9 -9
  40. package/ios/Map4dMap.h +7 -7
  41. package/ios/Map4dMap.m +14 -14
  42. package/ios/Map4dMapViewManager.m +34 -34
  43. package/ios/RCTConvert+Map4dMap.h +33 -33
  44. package/ios/RCTConvert+Map4dMap.m +112 -112
  45. package/ios/RMFCircle.h +37 -37
  46. package/ios/RMFCircle.m +100 -100
  47. package/ios/RMFCircleManager.h +18 -18
  48. package/ios/RMFCircleManager.m +155 -155
  49. package/ios/RMFCircleMap4d.h +23 -23
  50. package/ios/RMFCircleMap4d.m +13 -13
  51. package/ios/RMFCoordinate.h +22 -22
  52. package/ios/RMFCoordinate.m +13 -13
  53. package/ios/RMFDirectionsMarkerOptions.h +24 -24
  54. package/ios/RMFDirectionsMarkerOptions.m +23 -23
  55. package/ios/RMFDirectionsRenderer.h +47 -47
  56. package/ios/RMFDirectionsRenderer.m +182 -182
  57. package/ios/RMFDirectionsRendererManager.h +17 -17
  58. package/ios/RMFDirectionsRendererManager.m +84 -84
  59. package/ios/RMFDirectionsRendererMap4d.h +21 -21
  60. package/ios/RMFDirectionsRendererMap4d.m +12 -12
  61. package/ios/RMFDummyView.h +6 -6
  62. package/ios/RMFDummyView.m +12 -12
  63. package/ios/RMFEventResponse.h +39 -39
  64. package/ios/RMFEventResponse.m +98 -98
  65. package/ios/RMFIcon.h +24 -24
  66. package/ios/RMFIcon.m +35 -35
  67. package/ios/RMFMapView.h +84 -84
  68. package/ios/RMFMapView.m +376 -376
  69. package/ios/RMFMapViewManager.h +17 -17
  70. package/ios/RMFMapViewManager.m +508 -493
  71. package/ios/RMFMarker.h +57 -57
  72. package/ios/RMFMarker.m +267 -267
  73. package/ios/RMFMarkerManager.h +17 -17
  74. package/ios/RMFMarkerManager.m +156 -156
  75. package/ios/RMFMarkerMap4d.h +19 -19
  76. package/ios/RMFMarkerMap4d.m +13 -13
  77. package/ios/RMFPOI.h +38 -38
  78. package/ios/RMFPOI.m +123 -123
  79. package/ios/RMFPOIManager.h +18 -18
  80. package/ios/RMFPOIManager.m +168 -168
  81. package/ios/RMFPOIMap4d.h +22 -22
  82. package/ios/RMFPOIMap4d.m +12 -12
  83. package/ios/RMFPolygon.h +41 -41
  84. package/ios/RMFPolygon.m +106 -106
  85. package/ios/RMFPolygonManager.h +18 -18
  86. package/ios/RMFPolygonManager.m +141 -141
  87. package/ios/RMFPolygonMap4d.h +23 -23
  88. package/ios/RMFPolygonMap4d.m +15 -15
  89. package/ios/RMFPolyline.h +38 -38
  90. package/ios/RMFPolyline.m +101 -101
  91. package/ios/RMFPolylineManager.h +18 -18
  92. package/ios/RMFPolylineManager.m +139 -139
  93. package/ios/RMFPolylineMap4d.h +22 -22
  94. package/ios/RMFPolylineMap4d.m +15 -15
  95. package/ios/building/RMFBuilding.h +41 -41
  96. package/ios/building/RMFBuilding.m +104 -104
  97. package/ios/building/RMFBuildingManager.h +19 -19
  98. package/ios/building/RMFBuildingManager.m +133 -133
  99. package/ios/building/RMFBuildingMap4d.h +23 -23
  100. package/ios/building/RMFBuildingMap4d.m +15 -15
  101. package/ios/overlays/RMFTileOverlay.h +36 -36
  102. package/ios/overlays/RMFTileOverlay.m +64 -64
  103. package/ios/overlays/RMFTileOverlayManager.h +17 -17
  104. package/ios/overlays/RMFTileOverlayManager.m +27 -27
  105. package/lib/commonjs/components/MFBanDoSo.js +109 -0
  106. package/lib/commonjs/components/MFBanDoSo.js.map +1 -0
  107. package/lib/commonjs/components/MFBuilding.js +26 -26
  108. package/lib/commonjs/components/MFBuilding.js.map +1 -1
  109. package/lib/commonjs/components/MFCircle.js +20 -20
  110. package/lib/commonjs/components/MFCircle.js.map +1 -1
  111. package/lib/commonjs/components/MFDirectionsRenderer.js +32 -32
  112. package/lib/commonjs/components/MFDirectionsRenderer.js.map +1 -1
  113. package/lib/commonjs/components/MFMapView.js +152 -71
  114. package/lib/commonjs/components/MFMapView.js.map +1 -1
  115. package/lib/commonjs/components/MFMarker.js +35 -35
  116. package/lib/commonjs/components/MFMarker.js.map +1 -1
  117. package/lib/commonjs/components/MFPOI.js +20 -20
  118. package/lib/commonjs/components/MFPOI.js.map +1 -1
  119. package/lib/commonjs/components/MFPolygon.js +22 -22
  120. package/lib/commonjs/components/MFPolygon.js.map +1 -1
  121. package/lib/commonjs/components/MFPolyline.js +18 -18
  122. package/lib/commonjs/components/MFPolyline.js.map +1 -1
  123. package/lib/commonjs/components/MFTileOverlay.js +9 -9
  124. package/lib/commonjs/components/MFTileOverlay.js.map +1 -1
  125. package/lib/commonjs/components/Map4dMapView.js.map +1 -1
  126. package/lib/commonjs/components/extends/AreaFocusManager.js +205 -0
  127. package/lib/commonjs/components/extends/AreaFocusManager.js.map +1 -0
  128. package/lib/commonjs/components/extends/AreaFocuser.js +73 -0
  129. package/lib/commonjs/components/extends/AreaFocuser.js.map +1 -0
  130. package/lib/commonjs/components/extends/BoundHelper.js +36 -0
  131. package/lib/commonjs/components/extends/BoundHelper.js.map +1 -0
  132. package/lib/commonjs/components/extends/area/AreaFocusAreas.js +167 -0
  133. package/lib/commonjs/components/extends/area/AreaFocusAreas.js.map +1 -0
  134. package/lib/commonjs/components/extends/area/AreaFocusGeometryUtils.js +164 -0
  135. package/lib/commonjs/components/extends/area/AreaFocusGeometryUtils.js.map +1 -0
  136. package/lib/commonjs/components/extends/area/AreaFocusSession.js +100 -0
  137. package/lib/commonjs/components/extends/area/AreaFocusSession.js.map +1 -0
  138. package/lib/commonjs/components/extends/area/AreaFocusTypes.js +40 -0
  139. package/lib/commonjs/components/extends/area/AreaFocusTypes.js.map +1 -0
  140. package/lib/commonjs/components/internal/DefaultRoadmapStyle.js +2288 -0
  141. package/lib/commonjs/components/internal/DefaultRoadmapStyle.js.map +1 -0
  142. package/lib/commonjs/components/internal/GeojsonStyleUtils.js +139 -0
  143. package/lib/commonjs/components/internal/GeojsonStyleUtils.js.map +1 -0
  144. package/lib/commonjs/index.js +16 -0
  145. package/lib/commonjs/index.js.map +1 -1
  146. package/lib/module/components/MFBanDoSo.js +92 -0
  147. package/lib/module/components/MFBanDoSo.js.map +1 -0
  148. package/lib/module/components/MFBuilding.js +26 -26
  149. package/lib/module/components/MFBuilding.js.map +1 -1
  150. package/lib/module/components/MFCircle.js +20 -20
  151. package/lib/module/components/MFCircle.js.map +1 -1
  152. package/lib/module/components/MFDirectionsRenderer.js +32 -32
  153. package/lib/module/components/MFDirectionsRenderer.js.map +1 -1
  154. package/lib/module/components/MFMapView.js +149 -71
  155. package/lib/module/components/MFMapView.js.map +1 -1
  156. package/lib/module/components/MFMarker.js +35 -35
  157. package/lib/module/components/MFMarker.js.map +1 -1
  158. package/lib/module/components/MFPOI.js +20 -20
  159. package/lib/module/components/MFPOI.js.map +1 -1
  160. package/lib/module/components/MFPolygon.js +22 -22
  161. package/lib/module/components/MFPolygon.js.map +1 -1
  162. package/lib/module/components/MFPolyline.js +18 -18
  163. package/lib/module/components/MFPolyline.js.map +1 -1
  164. package/lib/module/components/MFTileOverlay.js +9 -9
  165. package/lib/module/components/MFTileOverlay.js.map +1 -1
  166. package/lib/module/components/Map4dMapView.js.map +1 -1
  167. package/lib/module/components/extends/AreaFocusManager.js +193 -0
  168. package/lib/module/components/extends/AreaFocusManager.js.map +1 -0
  169. package/lib/module/components/extends/AreaFocuser.js +64 -0
  170. package/lib/module/components/extends/AreaFocuser.js.map +1 -0
  171. package/lib/module/components/extends/BoundHelper.js +29 -0
  172. package/lib/module/components/extends/BoundHelper.js.map +1 -0
  173. package/lib/module/components/extends/area/AreaFocusAreas.js +156 -0
  174. package/lib/module/components/extends/area/AreaFocusAreas.js.map +1 -0
  175. package/lib/module/components/extends/area/AreaFocusGeometryUtils.js +153 -0
  176. package/lib/module/components/extends/area/AreaFocusGeometryUtils.js.map +1 -0
  177. package/lib/module/components/extends/area/AreaFocusSession.js +93 -0
  178. package/lib/module/components/extends/area/AreaFocusSession.js.map +1 -0
  179. package/lib/module/components/extends/area/AreaFocusTypes.js +33 -0
  180. package/lib/module/components/extends/area/AreaFocusTypes.js.map +1 -0
  181. package/lib/module/components/internal/DefaultRoadmapStyle.js +2281 -0
  182. package/lib/module/components/internal/DefaultRoadmapStyle.js.map +1 -0
  183. package/lib/module/components/internal/GeojsonStyleUtils.js +130 -0
  184. package/lib/module/components/internal/GeojsonStyleUtils.js.map +1 -0
  185. package/lib/module/index.js +3 -1
  186. package/lib/module/index.js.map +1 -1
  187. package/lib/typescript/components/Map4dMapView.d.ts +7 -7
  188. package/package.json +152 -152
  189. package/react-native-map4d-map.podspec +20 -20
  190. package/src/components/MFBanDoSo.js +124 -0
  191. package/src/components/MFBuilding.js +187 -187
  192. package/src/components/MFCircle.js +173 -173
  193. package/src/components/MFDirectionsRenderer.js +237 -237
  194. package/src/components/MFMapView.js +464 -373
  195. package/src/components/MFMarker.js +246 -246
  196. package/src/components/MFPOI.js +184 -184
  197. package/src/components/MFPolygon.js +186 -186
  198. package/src/components/MFPolyline.js +172 -172
  199. package/src/components/MFTileOverlay.js +45 -45
  200. package/src/components/Map4dMapView.tsx +26 -26
  201. package/src/components/extends/AreaFocusManager.js +196 -0
  202. package/src/components/extends/AreaFocuser.js +62 -0
  203. package/src/components/extends/BoundHelper.js +32 -0
  204. package/src/components/extends/area/AreaFocusAreas.js +164 -0
  205. package/src/components/extends/area/AreaFocusGeometryUtils.js +164 -0
  206. package/src/components/extends/area/AreaFocusSession.js +100 -0
  207. package/src/components/extends/area/AreaFocusTypes.js +36 -0
  208. package/src/components/internal/DefaultRoadmapStyle.js +3365 -0
  209. package/src/components/internal/GeojsonStyleUtils.js +143 -0
  210. package/src/index.js +25 -21
@@ -0,0 +1,3365 @@
1
+ const defaultRoadmapStyle = {
2
+ "web-version": "2.2.0",
3
+ "mobile-version": "2.1.0",
4
+ "sources": {
5
+ "map4d": {
6
+ "url": "map4d://tiles"
7
+ },
8
+ "geojson": {
9
+ "type": "json",
10
+ "url": ""
11
+ }
12
+ },
13
+ "images": {
14
+ "pois": {
15
+ "type": "simple_sprite",
16
+ "url": [
17
+ "https://maptile.s3-sgn10.fptcloud.com/v1/AUTH_b32b6bc102c44269ab7b55e7820e7116/data/images/627cd15e9c4fa69f92878f59.png",
18
+ "https://maptile.s3-sgn10.fptcloud.com/v1/AUTH_b32b6bc102c44269ab7b55e7820e7116/data/images/627cd15e9c4fa69f92878f5a.png",
19
+ "https://maptile.s3-sgn10.fptcloud.com/v1/AUTH_b32b6bc102c44269ab7b55e7820e7116/data/images/627cd15e9c4fa69f92878f5b.png"
20
+ ],
21
+ "width": 26,
22
+ "height": 32
23
+ },
24
+ },
25
+ "patterns": {
26
+ "dashdash": {
27
+ "type": "dash",
28
+ "gap": 3,
29
+ "length": 3,
30
+ "repeat": 2
31
+ },
32
+ "dotdot": {
33
+ "type": "dot",
34
+ "repeat": 2
35
+ }
36
+ },
37
+ "layers": [
38
+ {
39
+ "id": "earth_earth_fill",
40
+ "type": "background",
41
+ "filter": null,
42
+ "draw": {
43
+ "color": [
44
+ [
45
+ 2,
46
+ "#f8f9faff"
47
+ ]
48
+ ]
49
+ },
50
+ "metadata": {
51
+ "key": "earth",
52
+ "name": "Màu nền/Vùng đất",
53
+ "isDefault": true
54
+ }
55
+ },
56
+ {
57
+ "id": "water_water_fill",
58
+ "type": "fill",
59
+ "source": "map4d",
60
+ "source_layer": "water",
61
+ "filter": null,
62
+ "draw": {
63
+ "color": "#94c0f2ff"
64
+ },
65
+ "metadata": {
66
+ "name": "Nước",
67
+ "key": "water",
68
+ "isDefault": true
69
+ }
70
+ },
71
+ {
72
+ "id": "water_water_line",
73
+ "type": "line",
74
+ "source": "map4d",
75
+ "source_layer": "water",
76
+ "filter": null,
77
+ "draw": {
78
+ "color": "#94c0f2ff",
79
+ "width": [
80
+ [
81
+ 12,
82
+ 1
83
+ ],
84
+ [
85
+ 14,
86
+ 2
87
+ ]
88
+ ]
89
+ },
90
+ "metadata": {
91
+ "name": "Đường bờ biển",
92
+ "key": "water",
93
+ "isDefault": true
94
+ }
95
+ },
96
+ {
97
+ "id": "roads_highway_line",
98
+ "type": "line",
99
+ "source": "map4d",
100
+ "source_layer": "roads",
101
+ "filter": {
102
+ "kind": [
103
+ "highway"
104
+ ]
105
+ },
106
+ "draw": {
107
+ "width": [
108
+ [
109
+ 7,
110
+ 1
111
+ ],
112
+ [
113
+ 10,
114
+ 2
115
+ ],
116
+ [
117
+ 14,
118
+ 3
119
+ ],
120
+ [
121
+ 15,
122
+ 5
123
+ ],
124
+ [
125
+ 16,
126
+ 8
127
+ ],
128
+ [
129
+ 17,
130
+ 13
131
+ ],
132
+ [
133
+ 18,
134
+ 20
135
+ ],
136
+ [
137
+ 19,
138
+ 36
139
+ ]
140
+ ],
141
+ "color": "#fddc7fff",
142
+ "outline_width": [
143
+ [
144
+ 8,
145
+ 1
146
+ ]
147
+ ],
148
+ "outline_color": "#daa130ff"
149
+ },
150
+ "metadata": {
151
+ "name": "Cao tốc",
152
+ "group": "Đường giao thông",
153
+ "isDefault": true
154
+ }
155
+ },
156
+ {
157
+ "id": "roads_highway_label",
158
+ "type": "label",
159
+ "source": "map4d",
160
+ "source_layer": "roads",
161
+ "filter": {
162
+ "kind": [
163
+ "highway"
164
+ ]
165
+ },
166
+ "draw": {
167
+ "text_size": [
168
+ [
169
+ 7,
170
+ 12
171
+ ]
172
+ ],
173
+ "text_color": "#783b03ff",
174
+ "text_halo_color": "#FFF"
175
+ },
176
+ "metadata": {
177
+ "key": "highway",
178
+ "group": "Tên đường giao thông",
179
+ "isDefault": true
180
+ }
181
+ },
182
+ {
183
+ "id": "roads_major_road_line",
184
+ "type": "line",
185
+ "source": "map4d",
186
+ "source_layer": "roads",
187
+ "filter": {
188
+ "kind": [
189
+ "major_road"
190
+ ]
191
+ },
192
+ "draw": {
193
+ "width": [
194
+ [
195
+ 10,
196
+ 1
197
+ ],
198
+ [
199
+ 15,
200
+ 4
201
+ ],
202
+ [
203
+ 16,
204
+ 8
205
+ ],
206
+ [
207
+ 17,
208
+ 13
209
+ ],
210
+ [
211
+ 18,
212
+ 20
213
+ ],
214
+ [
215
+ 19,
216
+ 36
217
+ ]
218
+ ],
219
+ "color": "#ffffffff",
220
+ "outline_width": [
221
+ [
222
+ 10,
223
+ 1
224
+ ]
225
+ ],
226
+ "outline_color": "#dfe0e4ff"
227
+ },
228
+ "metadata": {
229
+ "name": "Đường chính",
230
+ "group": "Đường giao thông",
231
+ "isDefault": true
232
+ }
233
+ },
234
+ {
235
+ "id": "roads_major_road_label",
236
+ "type": "label",
237
+ "source": "map4d",
238
+ "source_layer": "roads",
239
+ "filter": {
240
+ "kind": [
241
+ "major_road"
242
+ ]
243
+ },
244
+ "draw": {
245
+ "text_size": [
246
+ [
247
+ 5,
248
+ 12
249
+ ]
250
+ ],
251
+ "text_color": "#4e5256ff",
252
+ "text_halo_color": "#FFF"
253
+ },
254
+ "metadata": {
255
+ "key": "major_road",
256
+ "group": "Tên đường giao thông",
257
+ "isDefault": true
258
+ }
259
+ },
260
+ {
261
+ "id": "roads_primary_line",
262
+ "type": "line",
263
+ "source": "map4d",
264
+ "source_layer": "roads",
265
+ "filter": {
266
+ "kind": [
267
+ "major_road"
268
+ ],
269
+ "kind_detail": [
270
+ "primary",
271
+ "primary_link"
272
+ ]
273
+ },
274
+ "draw": {
275
+ "width": [
276
+ [
277
+ 8,
278
+ 1
279
+ ],
280
+ [
281
+ 14,
282
+ 3
283
+ ],
284
+ [
285
+ 15,
286
+ 5
287
+ ],
288
+ [
289
+ 16,
290
+ 8
291
+ ],
292
+ [
293
+ 17,
294
+ 13
295
+ ],
296
+ [
297
+ 18,
298
+ 20
299
+ ],
300
+ [
301
+ 19,
302
+ 36
303
+ ]
304
+ ],
305
+ "color": "#ffffffff",
306
+ "outline_width": [
307
+ [
308
+ 8,
309
+ 1
310
+ ]
311
+ ],
312
+ "outline_color": "#dfe0e4ff"
313
+ },
314
+ "metadata": {
315
+ "name": "Đường lớn",
316
+ "group": "Đường giao thông",
317
+ "isDefault": true
318
+ }
319
+ },
320
+ {
321
+ "id": "roads_primary_label",
322
+ "type": "label",
323
+ "source": "map4d",
324
+ "source_layer": "roads",
325
+ "filter": {
326
+ "kind": [
327
+ "major_road"
328
+ ],
329
+ "kind_detail": [
330
+ "primary",
331
+ "primary_link"
332
+ ]
333
+ },
334
+ "draw": {
335
+ "text_size": 12,
336
+ "text_color": "#4e5256ff",
337
+ "text_halo_color": "#FFF"
338
+ },
339
+ "metadata": {
340
+ "key": "primary",
341
+ "group": "Tên đường giao thông",
342
+ "isDefault": true
343
+ }
344
+ },
345
+ {
346
+ "id": "roads_trunk_line",
347
+ "type": "line",
348
+ "source": "map4d",
349
+ "source_layer": "roads",
350
+ "filter": {
351
+ "kind": [
352
+ "major_road"
353
+ ],
354
+ "kind_detail": [
355
+ "trunk",
356
+ "trunk_link"
357
+ ]
358
+ },
359
+ "draw": {
360
+ "width": [
361
+ [
362
+ 7,
363
+ 1
364
+ ],
365
+ [
366
+ 10,
367
+ 2
368
+ ],
369
+ [
370
+ 14,
371
+ 3
372
+ ],
373
+ [
374
+ 15,
375
+ 5
376
+ ],
377
+ [
378
+ 16,
379
+ 8
380
+ ],
381
+ [
382
+ 17,
383
+ 13
384
+ ],
385
+ [
386
+ 18,
387
+ 20
388
+ ],
389
+ [
390
+ 19,
391
+ 36
392
+ ]
393
+ ],
394
+ "color": [
395
+ [
396
+ 7,
397
+ "#fdeec1ff"
398
+ ],
399
+ [
400
+ 13,
401
+ "#fde293ff"
402
+ ]
403
+ ],
404
+ "outline_width": [
405
+ [
406
+ 8,
407
+ 1
408
+ ]
409
+ ],
410
+ "outline_color": "#f8ae0aff"
411
+ },
412
+ "metadata": {
413
+ "name": "Quốc lộ",
414
+ "group": "Đường giao thông",
415
+ "isDefault": true
416
+ }
417
+ },
418
+ {
419
+ "id": "roads_trunk_label",
420
+ "type": "label",
421
+ "source": "map4d",
422
+ "source_layer": "roads",
423
+ "filter": {
424
+ "kind": [
425
+ "major_road"
426
+ ],
427
+ "kind_detail": [
428
+ "trunk",
429
+ "trunk_link"
430
+ ]
431
+ },
432
+ "draw": {
433
+ "text_size": 12,
434
+ "text_color": "#4e5256ff",
435
+ "text_halo_color": "#FFF"
436
+ },
437
+ "metadata": {
438
+ "key": "trunk",
439
+ "group": "Tên đường giao thông",
440
+ "isDefault": true
441
+ }
442
+ },
443
+ {
444
+ "id": "roads_minor_road_line",
445
+ "type": "line",
446
+ "source": "map4d",
447
+ "source_layer": "roads",
448
+ "filter": {
449
+ "kind": [
450
+ "minor_road",
451
+ "path"
452
+ ]
453
+ },
454
+ "draw": {
455
+ "width": [
456
+ [
457
+ 16,
458
+ 2
459
+ ],
460
+ [
461
+ 18,
462
+ 5
463
+ ],
464
+ [
465
+ 19,
466
+ 10
467
+ ]
468
+ ],
469
+ "color": "#FFF",
470
+ "outline_width": [
471
+ [
472
+ 16,
473
+ 1
474
+ ]
475
+ ],
476
+ "outline_color": "#dfe0e4ff"
477
+ },
478
+ "metadata": {
479
+ "name": "Đường phụ",
480
+ "group": "Đường giao thông",
481
+ "isDefault": true
482
+ }
483
+ },
484
+ {
485
+ "id": "roads_minor_road_label",
486
+ "type": "label",
487
+ "source": "map4d",
488
+ "source_layer": "roads",
489
+ "filter": {
490
+ "kind": [
491
+ "minor_road",
492
+ "path"
493
+ ]
494
+ },
495
+ "draw": {
496
+ "text_size": [
497
+ [
498
+ 8,
499
+ 10
500
+ ],
501
+ [
502
+ 17,
503
+ 12
504
+ ]
505
+ ],
506
+ "text_color": "#70757aff",
507
+ "text_halo_color": "#FFF"
508
+ },
509
+ "metadata": {
510
+ "key": "minor_road",
511
+ "group": "Tên đường giao thông",
512
+ "isDefault": true
513
+ }
514
+ },
515
+ {
516
+ "id": "roads_unclassified_line",
517
+ "type": "line",
518
+ "source": "map4d",
519
+ "source_layer": "roads",
520
+ "filter": {
521
+ "kind": [
522
+ "minor_road",
523
+ "path"
524
+ ],
525
+ "kind_detail": [
526
+ "unclassified"
527
+ ]
528
+ },
529
+ "draw": {
530
+ "width": [
531
+ [
532
+ 14,
533
+ 1
534
+ ],
535
+ [
536
+ 15,
537
+ 2
538
+ ],
539
+ [
540
+ 16,
541
+ 4
542
+ ],
543
+ [
544
+ 17,
545
+ 7
546
+ ],
547
+ [
548
+ 18,
549
+ 10
550
+ ],
551
+ [
552
+ 19,
553
+ 20
554
+ ]
555
+ ],
556
+ "color": [
557
+ [
558
+ 14,
559
+ "#e8e8e8ff"
560
+ ],
561
+ [
562
+ 15,
563
+ "#ffffffff"
564
+ ]
565
+ ],
566
+ "outline_width": [
567
+ [
568
+ 15,
569
+ 1
570
+ ]
571
+ ],
572
+ "outline_color": [
573
+ [
574
+ 7,
575
+ "#dfe0e4ff"
576
+ ],
577
+ [
578
+ 15,
579
+ "#dfe0e4ff"
580
+ ]
581
+ ]
582
+ },
583
+ "metadata": {
584
+ "name": "Đường nhỏ",
585
+ "group": "Đường giao thông",
586
+ "isDefault": true
587
+ }
588
+ },
589
+ {
590
+ "id": "roads_unclassified_label",
591
+ "type": "label",
592
+ "source": "map4d",
593
+ "source_layer": "roads",
594
+ "filter": {
595
+ "kind": [
596
+ "minor_road",
597
+ "path"
598
+ ],
599
+ "kind_detail": [
600
+ "unclassified"
601
+ ]
602
+ },
603
+ "draw": {
604
+ "text_size": [
605
+ [
606
+ 8,
607
+ 10
608
+ ],
609
+ [
610
+ 17,
611
+ 12
612
+ ]
613
+ ],
614
+ "text_color": "#4e5256ff",
615
+ "text_halo_color": "#FFF"
616
+ },
617
+ "metadata": {
618
+ "key": "unclassified",
619
+ "group": "Tên đường giao thông",
620
+ "isDefault": true
621
+ }
622
+ },
623
+ {
624
+ "id": "roads_residential_line",
625
+ "type": "line",
626
+ "source": "map4d",
627
+ "source_layer": "roads",
628
+ "filter": {
629
+ "kind": [
630
+ "minor_road",
631
+ "path"
632
+ ],
633
+ "kind_detail": [
634
+ "residential"
635
+ ]
636
+ },
637
+ "draw": {
638
+ "width": [
639
+ [
640
+ 14,
641
+ 1
642
+ ],
643
+ [
644
+ 15,
645
+ 2
646
+ ],
647
+ [
648
+ 16,
649
+ 4
650
+ ],
651
+ [
652
+ 17,
653
+ 7
654
+ ],
655
+ [
656
+ 18,
657
+ 10
658
+ ],
659
+ [
660
+ 19,
661
+ 20
662
+ ]
663
+ ],
664
+ "color": [
665
+ [
666
+ 14,
667
+ "#e8e8e8ff"
668
+ ],
669
+ [
670
+ 15,
671
+ "#ffffffff"
672
+ ]
673
+ ],
674
+ "outline_width": [
675
+ [
676
+ 15,
677
+ 1
678
+ ]
679
+ ],
680
+ "outline_color": [
681
+ [
682
+ 7,
683
+ "#dfe0e4ff"
684
+ ],
685
+ [
686
+ 15,
687
+ "#dfe0e4ff"
688
+ ]
689
+ ]
690
+ },
691
+ "metadata": {
692
+ "name": "Đường trong khu dân cư",
693
+ "group": "Đường giao thông",
694
+ "isDefault": true
695
+ }
696
+ },
697
+ {
698
+ "id": "roads_residential_label",
699
+ "type": "label",
700
+ "source": "map4d",
701
+ "source_layer": "roads",
702
+ "filter": {
703
+ "kind": [
704
+ "minor_road",
705
+ "path"
706
+ ],
707
+ "kind_detail": [
708
+ "residential"
709
+ ]
710
+ },
711
+ "draw": {
712
+ "text_size": [
713
+ [
714
+ 8,
715
+ 10
716
+ ],
717
+ [
718
+ 17,
719
+ 12
720
+ ]
721
+ ],
722
+ "text_color": "#4e5256ff",
723
+ "text_halo_color": "#FFF"
724
+ },
725
+ "metadata": {
726
+ "key": "residential",
727
+ "group": "Tên đường giao thông",
728
+ "isDefault": true
729
+ }
730
+ },
731
+ {
732
+ "id": "roads_footway_line",
733
+ "type": "line",
734
+ "source": "map4d",
735
+ "source_layer": "roads",
736
+ "filter": {
737
+ "kind": [
738
+ "minor_road",
739
+ "path"
740
+ ],
741
+ "kind_detail": [
742
+ "footway",
743
+ "pedestrian"
744
+ ]
745
+ },
746
+ "draw": {
747
+ "width": [
748
+ [
749
+ 16,
750
+ 2
751
+ ]
752
+ ],
753
+ "color": "#5bb974ff",
754
+ "outline_width": [
755
+ [
756
+ 16,
757
+ 1
758
+ ]
759
+ ],
760
+ "outline_color": "#f8f9faff"
761
+ },
762
+ "metadata": {
763
+ "name": "Đường đi dạo, đi bộ",
764
+ "group": "Đường giao thông",
765
+ "isDefault": true
766
+ }
767
+ },
768
+ {
769
+ "id": "roads_footway_label",
770
+ "type": "label",
771
+ "source": "map4d",
772
+ "source_layer": "roads",
773
+ "filter": {
774
+ "kind": [
775
+ "minor_road",
776
+ "path"
777
+ ],
778
+ "kind_detail": [
779
+ "footway",
780
+ "pedestrian"
781
+ ]
782
+ },
783
+ "draw": {
784
+ "text_size": [
785
+ [
786
+ 8,
787
+ 10
788
+ ],
789
+ [
790
+ 17,
791
+ 12
792
+ ]
793
+ ],
794
+ "text_color": "#4e5256ff",
795
+ "text_halo_color": "#FFF"
796
+ },
797
+ "metadata": {
798
+ "key": "footway",
799
+ "group": "Tên đường giao thông",
800
+ "isDefault": true
801
+ }
802
+ },
803
+ {
804
+ "id": "roads_construction_line",
805
+ "type": "line",
806
+ "source": "map4d",
807
+ "source_layer": "roads",
808
+ "filter": {
809
+ "kind": [
810
+ "construction"
811
+ ]
812
+ },
813
+ "draw": {
814
+ "width": [
815
+ [
816
+ 14,
817
+ 1
818
+ ],
819
+ [
820
+ 15,
821
+ 2
822
+ ]
823
+ ],
824
+ "color": "#DDDFE3",
825
+ "outline_width": [
826
+ [
827
+ 14,
828
+ 1
829
+ ]
830
+ ],
831
+ "outline_color": [
832
+ [
833
+ 7,
834
+ "#dfe0e4ff"
835
+ ],
836
+ [
837
+ 15,
838
+ "#dfe0e4ff"
839
+ ]
840
+ ]
841
+ },
842
+ "metadata": {
843
+ "name": "Đường đang xây dựng",
844
+ "group": "Đường giao thông",
845
+ "isDefault": true
846
+ }
847
+ },
848
+ {
849
+ "id": "roads_construction_label",
850
+ "type": "label",
851
+ "source": "map4d",
852
+ "source_layer": "roads",
853
+ "filter": {
854
+ "kind": [
855
+ "construction"
856
+ ]
857
+ },
858
+ "draw": {
859
+ "text_size": [
860
+ [
861
+ 8,
862
+ 10
863
+ ],
864
+ [
865
+ 17,
866
+ 12
867
+ ]
868
+ ],
869
+ "text_color": "#4e5256ff",
870
+ "text_halo_color": "#FFF"
871
+ },
872
+ "metadata": {
873
+ "key": "construction",
874
+ "group": "Tên đường giao thông",
875
+ "isDefault": true
876
+ }
877
+ },
878
+ {
879
+ "id": "roads_rail_line",
880
+ "type": "line",
881
+ "source": "map4d",
882
+ "source_layer": "roads",
883
+ "filter": {
884
+ "kind": [
885
+ "rail"
886
+ ]
887
+ },
888
+ "draw": {
889
+ "width": [
890
+ [
891
+ 10,
892
+ 2
893
+ ]
894
+ ],
895
+ "color": [
896
+ [
897
+ 10,
898
+ "#b9c0c5ff"
899
+ ]
900
+ ],
901
+ "outline_width": [
902
+ [
903
+ 13,
904
+ 1
905
+ ]
906
+ ],
907
+ "outline_color": "#e4a421ff",
908
+ "pattern": "dashdash"
909
+ },
910
+ "metadata": {
911
+ "name": "Đường sắt",
912
+ "group": "Đường giao thông",
913
+ "isDefault": true
914
+ }
915
+ },
916
+ {
917
+ "id": "roads_rail_label",
918
+ "type": "label",
919
+ "source": "map4d",
920
+ "source_layer": "roads",
921
+ "filter": {
922
+ "kind": [
923
+ "rail"
924
+ ]
925
+ },
926
+ "draw": {
927
+ "text_size": [
928
+ [
929
+ 8,
930
+ 10
931
+ ],
932
+ [
933
+ 17,
934
+ 12
935
+ ]
936
+ ],
937
+ "text_color": "#4e5256ff",
938
+ "text_halo_color": "#FFF"
939
+ },
940
+ "metadata": {
941
+ "key": "rail",
942
+ "group": "Tên đường giao thông",
943
+ "isDefault": true
944
+ }
945
+ },
946
+ {
947
+ "id": "roads_aeroway_line",
948
+ "type": "line",
949
+ "source": "map4d",
950
+ "source_layer": "roads",
951
+ "filter": {
952
+ "kind": [
953
+ "aeroway"
954
+ ]
955
+ },
956
+ "draw": {
957
+ "width": [
958
+ [
959
+ 13,
960
+ 2
961
+ ],
962
+ [
963
+ 15,
964
+ 6
965
+ ]
966
+ ],
967
+ "color": "#f8f9faff",
968
+ "outline_width": [
969
+ [
970
+ 10,
971
+ 1
972
+ ]
973
+ ],
974
+ "outline_color": "#dfe0e4ff"
975
+ },
976
+ "metadata": {
977
+ "name": "Đường băng",
978
+ "group": "Đường giao thông",
979
+ "isDefault": true
980
+ }
981
+ },
982
+ {
983
+ "id": "roads_aeroway_label",
984
+ "type": "label",
985
+ "source": "map4d",
986
+ "source_layer": "roads",
987
+ "filter": {
988
+ "kind": [
989
+ "aeroway"
990
+ ]
991
+ },
992
+ "draw": {
993
+ "text_size": [
994
+ [
995
+ 8,
996
+ 10
997
+ ],
998
+ [
999
+ 17,
1000
+ 12
1001
+ ]
1002
+ ],
1003
+ "text_color": "#4e5256ff",
1004
+ "text_halo_color": "#FFF"
1005
+ },
1006
+ "metadata": {
1007
+ "key": "aeroway",
1008
+ "group": "Tên đường giao thông",
1009
+ "isDefault": true
1010
+ }
1011
+ },
1012
+ {
1013
+ "id": "roads_ferry_line",
1014
+ "type": "line",
1015
+ "source": "map4d",
1016
+ "source_layer": "roads",
1017
+ "filter": {
1018
+ "kind": [
1019
+ "ferry"
1020
+ ]
1021
+ },
1022
+ "draw": {
1023
+ "width": [
1024
+ [
1025
+ 5,
1026
+ 1
1027
+ ]
1028
+ ],
1029
+ "color": "#206cb7ff",
1030
+ "outline_width": 1,
1031
+ "outline_color": [
1032
+ [
1033
+ 7,
1034
+ "#dfe0e4ff"
1035
+ ],
1036
+ [
1037
+ 15,
1038
+ "#dfe0e4ff"
1039
+ ]
1040
+ ],
1041
+ "pattern": "dashdash"
1042
+ },
1043
+ "metadata": {
1044
+ "name": "Đường phà",
1045
+ "group": "Đường giao thông",
1046
+ "isDefault": true
1047
+ }
1048
+ },
1049
+ {
1050
+ "id": "roads_ferry_label",
1051
+ "type": "label",
1052
+ "source": "map4d",
1053
+ "source_layer": "roads",
1054
+ "filter": {
1055
+ "kind": [
1056
+ "ferry"
1057
+ ]
1058
+ },
1059
+ "draw": {
1060
+ "text_size": 12,
1061
+ "text_color": "#185abcff",
1062
+ "text_halo_color": "#FFF"
1063
+ },
1064
+ "metadata": {
1065
+ "key": "ferry",
1066
+ "group": "Tên đường giao thông",
1067
+ "isDefault": true
1068
+ }
1069
+ },
1070
+ {
1071
+ "id": "roads_roads_line",
1072
+ "type": "line",
1073
+ "source": "map4d",
1074
+ "source_layer": "roads",
1075
+ "draw": {
1076
+ "width": [
1077
+ [
1078
+ 10,
1079
+ 1
1080
+ ]
1081
+ ],
1082
+ "color": "#FFF",
1083
+ "outline_width": [
1084
+ [
1085
+ 13,
1086
+ 1
1087
+ ]
1088
+ ],
1089
+ "outline_color": [
1090
+ [
1091
+ 7,
1092
+ "#dfe0e4ff"
1093
+ ],
1094
+ [
1095
+ 15,
1096
+ "#dfe0e4ff"
1097
+ ]
1098
+ ]
1099
+ },
1100
+ "metadata": {
1101
+ "name": "Đường khác",
1102
+ "group": "Đường giao thông",
1103
+ "isDefault": true
1104
+ }
1105
+ },
1106
+ {
1107
+ "id": "roads_roads_label",
1108
+ "type": "label",
1109
+ "source": "map4d",
1110
+ "source_layer": "roads",
1111
+ "draw": {
1112
+ "text_size": [
1113
+ [
1114
+ 8,
1115
+ 10
1116
+ ],
1117
+ [
1118
+ 17,
1119
+ 12
1120
+ ]
1121
+ ],
1122
+ "text_color": "#4e5256ff",
1123
+ "text_halo_color": "#FFF"
1124
+ },
1125
+ "metadata": {
1126
+ "key": "roads",
1127
+ "group": "Tên đường giao thông",
1128
+ "isDefault": true
1129
+ }
1130
+ },
1131
+ {
1132
+ "id": "boundaries_boundaries_line",
1133
+ "type": "line",
1134
+ "source": "map4d",
1135
+ "source_layer": "boundaries",
1136
+ "draw": {
1137
+ "width": [
1138
+ [
1139
+ 2,
1140
+ 0
1141
+ ]
1142
+ ]
1143
+ },
1144
+ "metadata": {
1145
+ "key": "boundaries",
1146
+ "group": "Đường ranh giới",
1147
+ "isDefault": true
1148
+ }
1149
+ },
1150
+ {
1151
+ "id": "boundaries_boundaries_label",
1152
+ "type": "label",
1153
+ "source": "map4d",
1154
+ "source_layer": "boundaries",
1155
+ "draw": {
1156
+ "text_size": 10,
1157
+ "text_color": "#798083",
1158
+ "text_halo_color": "#FFF"
1159
+ },
1160
+ "metadata": {
1161
+ "key": "boundaries",
1162
+ "group": "Tên ranh giới",
1163
+ "isDefault": true
1164
+ }
1165
+ },
1166
+ {
1167
+ "id": "boundaries_country_line",
1168
+ "type": "line",
1169
+ "source": "map4d",
1170
+ "source_layer": "boundaries",
1171
+ "filter": {
1172
+ "kind_detail": [
1173
+ "2"
1174
+ ]
1175
+ },
1176
+ "draw": {
1177
+ "width": [
1178
+ [
1179
+ 2,
1180
+ 1
1181
+ ]
1182
+ ],
1183
+ "color": "#7f7f7ffc"
1184
+ },
1185
+ "metadata": {
1186
+ "key": "country",
1187
+ "group": "Đường ranh giới",
1188
+ "isDefault": true
1189
+ }
1190
+ },
1191
+ {
1192
+ "id": "boundaries_country_label",
1193
+ "type": "label",
1194
+ "source": "map4d",
1195
+ "source_layer": "boundaries",
1196
+ "filter": {
1197
+ "kind_detail": [
1198
+ "2"
1199
+ ]
1200
+ },
1201
+ "draw": {
1202
+ "text_size": 10,
1203
+ "text_color": "#000000ff",
1204
+ "text_halo_color": "#ffffffff"
1205
+ },
1206
+ "metadata": {
1207
+ "key": "country",
1208
+ "group": "Tên ranh giới",
1209
+ "isDefault": true
1210
+ }
1211
+ },
1212
+ {
1213
+ "id": "boundaries_province_line",
1214
+ "type": "line",
1215
+ "source": "map4d",
1216
+ "source_layer": "boundaries",
1217
+ "filter": {
1218
+ "kind": [
1219
+ "province",
1220
+ "province_sf"
1221
+ ]
1222
+ },
1223
+ "draw": {
1224
+ "width": [
1225
+ [
1226
+ 5,
1227
+ 1
1228
+ ],
1229
+ [
1230
+ 11,
1231
+ 0
1232
+ ]
1233
+ ],
1234
+ "pattern": "dashdash",
1235
+ "color": [
1236
+ [
1237
+ 7,
1238
+ "#BDBDBD"
1239
+ ],
1240
+ [
1241
+ 8,
1242
+ "#8a8a8aff"
1243
+ ]
1244
+ ]
1245
+ },
1246
+ "metadata": {
1247
+ "key": "province",
1248
+ "group": "Đường ranh giới",
1249
+ "isDefault": true
1250
+ }
1251
+ },
1252
+ {
1253
+ "id": "boundaries_province_label",
1254
+ "type": "label",
1255
+ "source": "map4d",
1256
+ "source_layer": "boundaries",
1257
+ "filter": {
1258
+ "kind": [
1259
+ "province",
1260
+ "province_sf"
1261
+ ]
1262
+ },
1263
+ "draw": {
1264
+ "text_size": 10,
1265
+ "text_color": "#798083",
1266
+ "text_halo_color": "#FFF"
1267
+ },
1268
+ "metadata": {
1269
+ "key": "province",
1270
+ "group": "Tên ranh giới",
1271
+ "isDefault": true
1272
+ }
1273
+ },
1274
+ {
1275
+ "id": "boundaries_district_line",
1276
+ "type": "line",
1277
+ "source": "map4d",
1278
+ "source_layer": "boundaries",
1279
+ "filter": {
1280
+ "kind": [
1281
+ "district"
1282
+ ]
1283
+ },
1284
+ "draw": {
1285
+ "width": [
1286
+ [
1287
+ 11,
1288
+ 1
1289
+ ]
1290
+ ],
1291
+ "pattern": "dashdash",
1292
+ "color": "#8a8a8aff"
1293
+ },
1294
+ "metadata": {
1295
+ "key": "district",
1296
+ "group": "Đường ranh giới",
1297
+ "isDefault": true
1298
+ }
1299
+ },
1300
+ {
1301
+ "id": "boundaries_district_label",
1302
+ "type": "label",
1303
+ "source": "map4d",
1304
+ "source_layer": "boundaries",
1305
+ "filter": {
1306
+ "kind": [
1307
+ "district"
1308
+ ]
1309
+ },
1310
+ "draw": {
1311
+ "text_size": 10,
1312
+ "text_color": "#4e5256ff",
1313
+ "text_halo_color": "#FFF"
1314
+ },
1315
+ "metadata": {
1316
+ "key": "district",
1317
+ "group": "Tên ranh giới",
1318
+ "isDefault": true
1319
+ }
1320
+ },
1321
+ {
1322
+ "id": "boundaries_ward_line",
1323
+ "type": "line",
1324
+ "source": "map4d",
1325
+ "source_layer": "boundaries",
1326
+ "filter": {
1327
+ "kind": [
1328
+ "ward"
1329
+ ]
1330
+ },
1331
+ "draw": {
1332
+ "width": [
1333
+ [
1334
+ 14,
1335
+ 0
1336
+ ]
1337
+ ],
1338
+ "pattern": "dashdash",
1339
+ "color": "#8a8a8aff"
1340
+ },
1341
+ "metadata": {
1342
+ "key": "ward",
1343
+ "group": "Đường ranh giới",
1344
+ "isDefault": true
1345
+ }
1346
+ },
1347
+ {
1348
+ "id": "boundaries_ward_label",
1349
+ "type": "label",
1350
+ "source": "map4d",
1351
+ "source_layer": "boundaries",
1352
+ "filter": {
1353
+ "kind": [
1354
+ "ward"
1355
+ ]
1356
+ },
1357
+ "draw": {
1358
+ "text_size": 10,
1359
+ "text_color": "#4e5256ff",
1360
+ "text_halo_color": "#FFF"
1361
+ },
1362
+ "metadata": {
1363
+ "key": "ward",
1364
+ "group": "Tên ranh giới",
1365
+ "isDefault": true
1366
+ }
1367
+ },
1368
+ {
1369
+ "id": "places_places_label",
1370
+ "type": "label",
1371
+ "source": "map4d",
1372
+ "source_layer": "places",
1373
+ "draw": {
1374
+ "text_size": 0,
1375
+ "text_color": "#505050",
1376
+ "text_halo_color": "#FFF"
1377
+ },
1378
+ "metadata": {
1379
+ "key": "places",
1380
+ "group": "Tên địa giới hành chính",
1381
+ "isDefault": true
1382
+ }
1383
+ },
1384
+ {
1385
+ "id": "places_country_label",
1386
+ "type": "label",
1387
+ "source": "map4d",
1388
+ "source_layer": "places",
1389
+ "filter": {
1390
+ "kind": [
1391
+ "country",
1392
+ "country_sf"
1393
+ ]
1394
+ },
1395
+ "draw": {
1396
+ "text_size": [
1397
+ [
1398
+ 2,
1399
+ 9
1400
+ ],
1401
+ [
1402
+ 5,
1403
+ 12
1404
+ ],
1405
+ [
1406
+ 6,
1407
+ 18
1408
+ ],
1409
+ [
1410
+ 9,
1411
+ 0
1412
+ ]
1413
+ ],
1414
+ "text_color": "#232323ff",
1415
+ "text_halo_color": "#ffffffff"
1416
+ },
1417
+ "metadata": {
1418
+ "key": "country",
1419
+ "group": "Tên địa giới hành chính",
1420
+ "isDefault": true
1421
+ }
1422
+ },
1423
+ {
1424
+ "id": "places_archipelago_label",
1425
+ "type": "label",
1426
+ "source": "map4d",
1427
+ "source_layer": "places",
1428
+ "filter": {
1429
+ "kind": [
1430
+ "archipelago"
1431
+ ]
1432
+ },
1433
+ "draw": {
1434
+ "text_size": [
1435
+ [
1436
+ 5,
1437
+ 9
1438
+ ],
1439
+ [
1440
+ 6,
1441
+ 12
1442
+ ],
1443
+ [
1444
+ 8,
1445
+ 14
1446
+ ]
1447
+ ],
1448
+ "text_color": "#181818ff",
1449
+ "text_halo_color": "#ffffffff"
1450
+ },
1451
+ "metadata": {
1452
+ "key": "archipelago",
1453
+ "group": "Tên địa giới hành chính",
1454
+ "isDefault": true
1455
+ }
1456
+ },
1457
+ {
1458
+ "id": "places_sea_label",
1459
+ "type": "label",
1460
+ "source": "map4d",
1461
+ "source_layer": "places",
1462
+ "filter": {
1463
+ "kind": [
1464
+ "sea"
1465
+ ]
1466
+ },
1467
+ "draw": {
1468
+ "text_size": [
1469
+ [
1470
+ 4,
1471
+ 7
1472
+ ],
1473
+ [
1474
+ 5,
1475
+ 9
1476
+ ],
1477
+ [
1478
+ 6,
1479
+ 12
1480
+ ],
1481
+ [
1482
+ 7,
1483
+ 12
1484
+ ],
1485
+ [
1486
+ 8,
1487
+ 12
1488
+ ],
1489
+ [
1490
+ 10,
1491
+ 12
1492
+ ]
1493
+ ],
1494
+ "text_color": "#232323ff",
1495
+ "text_halo_color": "#ffffffff"
1496
+ },
1497
+ "metadata": {
1498
+ "key": "sea",
1499
+ "group": "Tên địa giới hành chính",
1500
+ "isDefault": true
1501
+ }
1502
+ },
1503
+ {
1504
+ "id": "places_island_label",
1505
+ "type": "label",
1506
+ "source": "map4d",
1507
+ "source_layer": "places",
1508
+ "filter": {
1509
+ "kind": [
1510
+ "island"
1511
+ ]
1512
+ },
1513
+ "draw": {
1514
+ "text_size": [
1515
+ [
1516
+ 6,
1517
+ 9
1518
+ ]
1519
+ ],
1520
+ "text_color": "#232323ff",
1521
+ "text_halo_color": "#FFF"
1522
+ },
1523
+ "metadata": {
1524
+ "key": "island",
1525
+ "group": "Tên địa giới hành chính",
1526
+ "isDefault": true
1527
+ }
1528
+ },
1529
+ {
1530
+ "id": "places_islet_label",
1531
+ "type": "label",
1532
+ "source": "map4d",
1533
+ "source_layer": "places",
1534
+ "filter": {
1535
+ "kind": [
1536
+ "islet"
1537
+ ]
1538
+ },
1539
+ "draw": {
1540
+ "text_size": [
1541
+ [
1542
+ 12,
1543
+ 10
1544
+ ]
1545
+ ],
1546
+ "text_color": "#121212ff",
1547
+ "text_halo_color": "#FFF"
1548
+ },
1549
+ "metadata": {
1550
+ "key": "islet",
1551
+ "group": "Tên địa giới hành chính",
1552
+ "isDefault": true
1553
+ }
1554
+ },
1555
+ {
1556
+ "id": "places_province_label",
1557
+ "type": "label",
1558
+ "source": "map4d",
1559
+ "source_layer": "places",
1560
+ "filter": {
1561
+ "kind": [
1562
+ "province"
1563
+ ]
1564
+ },
1565
+ "draw": {
1566
+ "text_size": [
1567
+ [
1568
+ 7,
1569
+ 9
1570
+ ],
1571
+ [
1572
+ 8,
1573
+ 16
1574
+ ],
1575
+ [
1576
+ 10,
1577
+ 20
1578
+ ],
1579
+ [
1580
+ 14,
1581
+ 0
1582
+ ]
1583
+ ],
1584
+ "text_color": "#565D67",
1585
+ "text_halo_color": "#FFF"
1586
+ },
1587
+ "metadata": {
1588
+ "key": "province",
1589
+ "group": "Tên địa giới hành chính",
1590
+ "isDefault": true
1591
+ }
1592
+ },
1593
+ {
1594
+ "id": "places_city_label",
1595
+ "type": "label",
1596
+ "source": "map4d",
1597
+ "source_layer": "places",
1598
+ "filter": {
1599
+ "kind": [
1600
+ "province"
1601
+ ],
1602
+ "kind_detail": [
1603
+ "city"
1604
+ ]
1605
+ },
1606
+ "draw": {
1607
+ "text_size": [
1608
+ [
1609
+ 5,
1610
+ 12
1611
+ ],
1612
+ [
1613
+ 8,
1614
+ 18
1615
+ ],
1616
+ [
1617
+ 10,
1618
+ 20
1619
+ ],
1620
+ [
1621
+ 14,
1622
+ 0
1623
+ ]
1624
+ ],
1625
+ "text_color": "#1d1f20ff",
1626
+ "text_halo_color": "#ffffffff"
1627
+ },
1628
+ "metadata": {
1629
+ "key": "city",
1630
+ "group": "Tên địa giới hành chính",
1631
+ "isDefault": true
1632
+ }
1633
+ },
1634
+ {
1635
+ "id": "places_district_label",
1636
+ "type": "label",
1637
+ "source": "map4d",
1638
+ "source_layer": "places",
1639
+ "filter": {
1640
+ "kind": [
1641
+ "district"
1642
+ ]
1643
+ },
1644
+ "draw": {
1645
+ "text_size": [
1646
+ [
1647
+ 11,
1648
+ 12
1649
+ ],
1650
+ [
1651
+ 13,
1652
+ 13
1653
+ ],
1654
+ [
1655
+ 14,
1656
+ 0
1657
+ ]
1658
+ ],
1659
+ "text_color": "#4e5256ff",
1660
+ "text_halo_color": "#FFF"
1661
+ },
1662
+ "metadata": {
1663
+ "key": "district",
1664
+ "group": "Tên địa giới hành chính",
1665
+ "isDefault": true
1666
+ }
1667
+ },
1668
+ {
1669
+ "id": "places_ward_label",
1670
+ "type": "label",
1671
+ "source": "map4d",
1672
+ "source_layer": "places",
1673
+ "filter": {
1674
+ "kind": [
1675
+ "ward"
1676
+ ]
1677
+ },
1678
+ "draw": {
1679
+ "text_size": [
1680
+ [
1681
+ 14,
1682
+ 10
1683
+ ],
1684
+ [
1685
+ 15,
1686
+ 11
1687
+ ],
1688
+ [
1689
+ 17,
1690
+ 0
1691
+ ]
1692
+ ],
1693
+ "text_color": "#414448ff",
1694
+ "text_halo_color": "#FFF"
1695
+ },
1696
+ "metadata": {
1697
+ "key": "ward",
1698
+ "group": "Tên địa giới hành chính",
1699
+ "isDefault": true
1700
+ }
1701
+ },
1702
+ {
1703
+ "id": "places_hamlet_label",
1704
+ "type": "label",
1705
+ "source": "map4d",
1706
+ "source_layer": "places",
1707
+ "filter": {
1708
+ "kind": "hamlet"
1709
+ },
1710
+ "draw": {
1711
+ "text_size": [
1712
+ [
1713
+ 15,
1714
+ 9
1715
+ ]
1716
+ ],
1717
+ "text_color": "#505050",
1718
+ "text_halo_color": "#FFF"
1719
+ },
1720
+ "metadata": {
1721
+ "key": "hamlet",
1722
+ "group": "Tên địa giới hành chính",
1723
+ "isDefault": true
1724
+ }
1725
+ },
1726
+ {
1727
+ "id": "pois_pois_symbol",
1728
+ "type": "symbol",
1729
+ "source": "map4d",
1730
+ "source_layer": "pois",
1731
+ "draw": {
1732
+ "icon_image": "pois",
1733
+ "icon_index": 1,
1734
+ "icon_color": "#678899ff",
1735
+ "text_size": 12,
1736
+ "text_color": "#678899ff",
1737
+ "text_halo_color": "#fdfdfd"
1738
+ },
1739
+ "metadata": {
1740
+ "key": "pois",
1741
+ "group": "Địa điểm",
1742
+ "isDefault": true
1743
+ }
1744
+ },
1745
+ {
1746
+ "id": "pois_cafe_symbol",
1747
+ "type": "symbol",
1748
+ "source": "map4d",
1749
+ "source_layer": "pois",
1750
+ "filter": {
1751
+ "kind": [
1752
+ "cafe",
1753
+ "milk_tea",
1754
+ "drink"
1755
+ ]
1756
+ },
1757
+ "draw": {
1758
+ "icon_image": "pois",
1759
+ "icon_index": 19,
1760
+ "icon_color": "#f19800ff",
1761
+ "text_size": 12,
1762
+ "text_color": "#f19800ff",
1763
+ "text_halo_color": "#fdfdfd"
1764
+ },
1765
+ "metadata": {
1766
+ "key": "cafe",
1767
+ "group": "Địa điểm",
1768
+ "isDefault": true
1769
+ }
1770
+ },
1771
+ {
1772
+ "id": "pois_store_symbol",
1773
+ "type": "symbol",
1774
+ "source": "map4d",
1775
+ "source_layer": "pois",
1776
+ "filter": {
1777
+ "kind": [
1778
+ "car_dealer",
1779
+ "motorcycle_dealer",
1780
+ "bicycle_store",
1781
+ "car_rental",
1782
+ "motorcycle_rental",
1783
+ "cosmetic_store",
1784
+ "mommy_store",
1785
+ "clothing_store",
1786
+ "glasses_store",
1787
+ "shoe_store",
1788
+ "electronics_store",
1789
+ "cellphone_store",
1790
+ "computer_store",
1791
+ "store",
1792
+ "fruit_shop",
1793
+ "florist",
1794
+ "sports_store",
1795
+ "toy_store",
1796
+ "furniture_store",
1797
+ "home_goods_store",
1798
+ "jewelry_store",
1799
+ "book_store",
1800
+ "pet_store",
1801
+ "liquor_store",
1802
+ "gift_shop",
1803
+ "building_materials_store",
1804
+ "musical_instrument_store",
1805
+ "electrical_supply_store",
1806
+ "second_hand_store",
1807
+ "fuel_store"
1808
+ ]
1809
+ },
1810
+ "draw": {
1811
+ "icon_image": "pois",
1812
+ "icon_index": 2,
1813
+ "icon_color": "#5491f5ff",
1814
+ "text_size": 12,
1815
+ "text_color": "#5491f5ff",
1816
+ "text_halo_color": "#fdfdfdff"
1817
+ },
1818
+ "metadata": {
1819
+ "key": "store",
1820
+ "group": "Địa điểm",
1821
+ "isDefault": true
1822
+ }
1823
+ },
1824
+ {
1825
+ "id": "pois_market_symbol",
1826
+ "type": "symbol",
1827
+ "source": "map4d",
1828
+ "source_layer": "pois",
1829
+ "filter": {
1830
+ "kind": [
1831
+ "food_store",
1832
+ "convenience_store",
1833
+ "local_market",
1834
+ "supermarket",
1835
+ "grocery_store",
1836
+ "shopping_mall"
1837
+ ]
1838
+ },
1839
+ "draw": {
1840
+ "icon_image": "pois",
1841
+ "icon_index": 3,
1842
+ "icon_color": "#5491f5ff",
1843
+ "text_size": 12,
1844
+ "text_color": "#5491f5ff",
1845
+ "text_halo_color": "#fdfdfd"
1846
+ },
1847
+ "metadata": {
1848
+ "key": "market",
1849
+ "group": "Địa điểm",
1850
+ "isDefault": true
1851
+ }
1852
+ },
1853
+ {
1854
+ "id": "pois_atm_symbol",
1855
+ "type": "symbol",
1856
+ "source": "map4d",
1857
+ "source_layer": "pois",
1858
+ "filter": {
1859
+ "kind": [
1860
+ "atm"
1861
+ ]
1862
+ },
1863
+ "draw": {
1864
+ "icon_image": "pois",
1865
+ "icon_index": 4,
1866
+ "icon_color": "#7985caff",
1867
+ "text_size": 12,
1868
+ "text_color": "#7985caff",
1869
+ "text_halo_color": "#fdfdfdff"
1870
+ },
1871
+ "metadata": {
1872
+ "key": "atm",
1873
+ "group": "Địa điểm",
1874
+ "isDefault": true
1875
+ }
1876
+ },
1877
+ {
1878
+ "id": "pois_bank_symbol",
1879
+ "type": "symbol",
1880
+ "source": "map4d",
1881
+ "source_layer": "pois",
1882
+ "filter": {
1883
+ "kind": [
1884
+ "bank",
1885
+ "treasury"
1886
+ ]
1887
+ },
1888
+ "draw": {
1889
+ "icon_image": "pois",
1890
+ "icon_index": 5,
1891
+ "icon_color": "#7985caff",
1892
+ "text_size": 12,
1893
+ "text_color": "#7985caff",
1894
+ "text_halo_color": "#fdfdfdff"
1895
+ },
1896
+ "metadata": {
1897
+ "key": "bank",
1898
+ "group": "Địa điểm",
1899
+ "isDefault": true
1900
+ }
1901
+ },
1902
+ {
1903
+ "id": "pois_pharmacy_symbol",
1904
+ "type": "symbol",
1905
+ "source": "map4d",
1906
+ "source_layer": "pois",
1907
+ "filter": {
1908
+ "kind": [
1909
+ "pharmacy"
1910
+ ]
1911
+ },
1912
+ "draw": {
1913
+ "icon_image": "pois",
1914
+ "icon_index": 6,
1915
+ "icon_color": "#ec685cff",
1916
+ "text_size": 12,
1917
+ "text_color": "#ec685cff",
1918
+ "text_halo_color": "#fdfdfdff"
1919
+ },
1920
+ "metadata": {
1921
+ "key": "pharmacy",
1922
+ "group": "Địa điểm",
1923
+ "isDefault": true
1924
+ }
1925
+ },
1926
+ {
1927
+ "id": "pois_hospital_symbol",
1928
+ "type": "symbol",
1929
+ "source": "map4d",
1930
+ "source_layer": "pois",
1931
+ "filter": {
1932
+ "kind": [
1933
+ "health",
1934
+ "hospital",
1935
+ "doctor",
1936
+ "physiotherapist"
1937
+ ]
1938
+ },
1939
+ "draw": {
1940
+ "icon_image": "pois",
1941
+ "icon_index": 7,
1942
+ "icon_color": "#ec685cff",
1943
+ "text_size": 12,
1944
+ "text_color": "#ec685cff",
1945
+ "text_halo_color": "#fdfdfdff"
1946
+ },
1947
+ "metadata": {
1948
+ "key": "hospital",
1949
+ "group": "Địa điểm",
1950
+ "isDefault": true
1951
+ }
1952
+ },
1953
+ {
1954
+ "id": "pois_dentist_symbol",
1955
+ "type": "symbol",
1956
+ "source": "map4d",
1957
+ "source_layer": "pois",
1958
+ "filter": {
1959
+ "kind": [
1960
+ "dentist"
1961
+ ]
1962
+ },
1963
+ "draw": {
1964
+ "icon_image": "pois",
1965
+ "icon_index": 8,
1966
+ "icon_color": "#ec685cff",
1967
+ "text_size": 12,
1968
+ "text_color": "#ec685cff",
1969
+ "text_halo_color": "#fdfdfd"
1970
+ },
1971
+ "metadata": {
1972
+ "key": "dentist",
1973
+ "group": "Địa điểm",
1974
+ "isDefault": true
1975
+ }
1976
+ },
1977
+ {
1978
+ "id": "pois_bus_station_symbol",
1979
+ "type": "symbol",
1980
+ "source": "map4d",
1981
+ "source_layer": "pois",
1982
+ "filter": {
1983
+ "kind": [
1984
+ "bus_station",
1985
+ "transit_station"
1986
+ ]
1987
+ },
1988
+ "draw": {
1989
+ "icon_image": "pois",
1990
+ "icon_index": 10,
1991
+ "icon_color": "#678899ff",
1992
+ "text_size": 12,
1993
+ "text_color": "#678899ff",
1994
+ "text_halo_color": "#fdfdfd"
1995
+ },
1996
+ "metadata": {
1997
+ "key": "bus_station",
1998
+ "group": "Địa điểm",
1999
+ "isDefault": true
2000
+ }
2001
+ },
2002
+ {
2003
+ "id": "pois_airport_symbol",
2004
+ "type": "symbol",
2005
+ "source": "map4d",
2006
+ "source_layer": "pois",
2007
+ "filter": {
2008
+ "kind": [
2009
+ "airport"
2010
+ ]
2011
+ },
2012
+ "draw": {
2013
+ "icon_image": "pois",
2014
+ "icon_index": 11,
2015
+ "icon_color": "#678899ff",
2016
+ "text_size": 12,
2017
+ "text_color": "#678899ff",
2018
+ "text_halo_color": "#fdfdfd"
2019
+ },
2020
+ "metadata": {
2021
+ "key": "airport",
2022
+ "group": "Địa điểm",
2023
+ "isDefault": true
2024
+ }
2025
+ },
2026
+ {
2027
+ "id": "pois_train_station_symbol",
2028
+ "type": "symbol",
2029
+ "source": "map4d",
2030
+ "source_layer": "pois",
2031
+ "filter": {
2032
+ "kind": [
2033
+ "train_station",
2034
+ "subway_station"
2035
+ ]
2036
+ },
2037
+ "draw": {
2038
+ "icon_image": "pois",
2039
+ "icon_index": 12,
2040
+ "icon_color": "#678899ff",
2041
+ "text_size": 12,
2042
+ "text_color": "#678899ff",
2043
+ "text_halo_color": "#fdfdfd"
2044
+ },
2045
+ "metadata": {
2046
+ "key": "train_station",
2047
+ "group": "Địa điểm",
2048
+ "isDefault": true
2049
+ }
2050
+ },
2051
+ {
2052
+ "id": "pois_bus_stop_symbol",
2053
+ "type": "symbol",
2054
+ "source": "map4d",
2055
+ "source_layer": "pois",
2056
+ "filter": {
2057
+ "kind": [
2058
+ "bus_stop"
2059
+ ]
2060
+ },
2061
+ "draw": {
2062
+ "icon_image": "pois",
2063
+ "icon_index": 54,
2064
+ "icon_color": "#2e7dfeff",
2065
+ "text_size": 12,
2066
+ "text_color": "#2e7dfeff",
2067
+ "text_halo_color": "#fdfdfd"
2068
+ },
2069
+ "metadata": {
2070
+ "key": "bus_stop",
2071
+ "group": "Địa điểm",
2072
+ "isDefault": true
2073
+ }
2074
+ },
2075
+ {
2076
+ "id": "pois_charging_station_symbol",
2077
+ "type": "symbol",
2078
+ "source": "map4d",
2079
+ "source_layer": "pois",
2080
+ "filter": {
2081
+ "kind": [
2082
+ "charging_station"
2083
+ ]
2084
+ },
2085
+ "draw": {
2086
+ "icon_image": "pois",
2087
+ "icon_index": 13,
2088
+ "icon_color": "#678899ff",
2089
+ "text_size": 12,
2090
+ "text_color": "#678899ff",
2091
+ "text_halo_color": "#fdfdfd"
2092
+ },
2093
+ "metadata": {
2094
+ "key": "charging_station",
2095
+ "group": "Địa điểm",
2096
+ "isDefault": true
2097
+ }
2098
+ },
2099
+ {
2100
+ "id": "pois_gas_station_symbol",
2101
+ "type": "symbol",
2102
+ "source": "map4d",
2103
+ "source_layer": "pois",
2104
+ "filter": {
2105
+ "kind": [
2106
+ "gas_station"
2107
+ ]
2108
+ },
2109
+ "draw": {
2110
+ "icon_image": "pois",
2111
+ "icon_index": 14,
2112
+ "icon_color": "#678899ff",
2113
+ "text_size": 12,
2114
+ "text_color": "#678899ff",
2115
+ "text_halo_color": "#fdfdfd"
2116
+ },
2117
+ "metadata": {
2118
+ "key": "gas_station",
2119
+ "group": "Địa điểm",
2120
+ "isDefault": true
2121
+ }
2122
+ },
2123
+ {
2124
+ "id": "pois_parking_symbol",
2125
+ "type": "symbol",
2126
+ "source": "map4d",
2127
+ "source_layer": "pois",
2128
+ "filter": {
2129
+ "kind": [
2130
+ "parking"
2131
+ ]
2132
+ },
2133
+ "draw": {
2134
+ "icon_image": "pois",
2135
+ "icon_index": 15,
2136
+ "icon_color": "#678899ff",
2137
+ "text_size": 12,
2138
+ "text_color": "#678899ff",
2139
+ "text_halo_color": "#fdfdfd"
2140
+ },
2141
+ "metadata": {
2142
+ "key": "parking",
2143
+ "group": "Địa điểm",
2144
+ "isDefault": true
2145
+ }
2146
+ },
2147
+ {
2148
+ "id": "pois_school_symbol",
2149
+ "type": "symbol",
2150
+ "source": "map4d",
2151
+ "source_layer": "pois",
2152
+ "filter": {
2153
+ "kind": [
2154
+ "preschool",
2155
+ "primary_school",
2156
+ "secondary_school",
2157
+ "high_school",
2158
+ "university",
2159
+ "college",
2160
+ "driving_school",
2161
+ "language_center"
2162
+ ]
2163
+ },
2164
+ "draw": {
2165
+ "icon_image": "pois",
2166
+ "icon_index": 16,
2167
+ "icon_color": "#78909cff",
2168
+ "text_size": 12,
2169
+ "text_color": "#78909cff",
2170
+ "text_halo_color": "#fdfdfd"
2171
+ },
2172
+ "metadata": {
2173
+ "key": "school",
2174
+ "group": "Địa điểm",
2175
+ "isDefault": true
2176
+ }
2177
+ },
2178
+ {
2179
+ "id": "pois_hotel_symbol",
2180
+ "type": "symbol",
2181
+ "source": "map4d",
2182
+ "source_layer": "pois",
2183
+ "filter": {
2184
+ "kind": [
2185
+ "lodging",
2186
+ "hotel",
2187
+ "apartment",
2188
+ "guest_house"
2189
+ ]
2190
+ },
2191
+ "draw": {
2192
+ "icon_image": "pois",
2193
+ "icon_index": 17,
2194
+ "icon_color": "#f06292ff",
2195
+ "text_size": 12,
2196
+ "text_color": "#f06292ff",
2197
+ "text_halo_color": "#fdfdfd"
2198
+ },
2199
+ "metadata": {
2200
+ "key": "hotel",
2201
+ "group": "Địa điểm",
2202
+ "isDefault": true
2203
+ }
2204
+ },
2205
+ {
2206
+ "id": "pois_pagoda_symbol",
2207
+ "type": "symbol",
2208
+ "source": "map4d",
2209
+ "source_layer": "pois",
2210
+ "filter": {
2211
+ "kind": [
2212
+ "pagoda"
2213
+ ]
2214
+ },
2215
+ "draw": {
2216
+ "icon_image": "pois",
2217
+ "icon_index": 22,
2218
+ "icon_color": "#678899ff",
2219
+ "text_size": 12,
2220
+ "text_color": "#678899ff",
2221
+ "text_halo_color": "#fdfdfd"
2222
+ },
2223
+ "metadata": {
2224
+ "key": "pagoda",
2225
+ "group": "Địa điểm",
2226
+ "isDefault": true
2227
+ }
2228
+ },
2229
+ {
2230
+ "id": "pois_temple_symbol",
2231
+ "type": "symbol",
2232
+ "source": "map4d",
2233
+ "source_layer": "pois",
2234
+ "filter": {
2235
+ "kind": [
2236
+ "temple",
2237
+ "worship"
2238
+ ]
2239
+ },
2240
+ "draw": {
2241
+ "icon_image": "pois",
2242
+ "icon_index": 23,
2243
+ "icon_color": "#678899ff",
2244
+ "text_size": 12,
2245
+ "text_color": "#678899ff",
2246
+ "text_halo_color": "#fdfdfd"
2247
+ },
2248
+ "metadata": {
2249
+ "key": "temple",
2250
+ "group": "Địa điểm",
2251
+ "isDefault": true
2252
+ }
2253
+ },
2254
+ {
2255
+ "id": "pois_church_symbol",
2256
+ "type": "symbol",
2257
+ "source": "map4d",
2258
+ "source_layer": "pois",
2259
+ "filter": {
2260
+ "kind": [
2261
+ "church"
2262
+ ]
2263
+ },
2264
+ "draw": {
2265
+ "icon_image": "pois",
2266
+ "icon_index": 24,
2267
+ "icon_color": "#678899ff",
2268
+ "text_size": 12,
2269
+ "text_color": "#678899ff",
2270
+ "text_halo_color": "#fdfdfd"
2271
+ },
2272
+ "metadata": {
2273
+ "key": "church",
2274
+ "group": "Địa điểm",
2275
+ "isDefault": true
2276
+ }
2277
+ },
2278
+ {
2279
+ "id": "pois_storage_symbol",
2280
+ "type": "symbol",
2281
+ "source": "map4d",
2282
+ "source_layer": "pois",
2283
+ "filter": {
2284
+ "kind": [
2285
+ "storage"
2286
+ ]
2287
+ },
2288
+ "draw": {
2289
+ "icon_image": "pois",
2290
+ "icon_index": 25,
2291
+ "icon_color": "#00bcfcff",
2292
+ "text_size": 12,
2293
+ "text_color": "#00bcfcff",
2294
+ "text_halo_color": "#fdfdfd"
2295
+ },
2296
+ "metadata": {
2297
+ "key": "storage",
2298
+ "group": "Địa điểm",
2299
+ "isDefault": true
2300
+ }
2301
+ },
2302
+ {
2303
+ "id": "pois_industrial_zone_symbol",
2304
+ "type": "symbol",
2305
+ "source": "map4d",
2306
+ "source_layer": "pois",
2307
+ "filter": {
2308
+ "kind": [
2309
+ "industrial_zone"
2310
+ ]
2311
+ },
2312
+ "draw": {
2313
+ "icon_image": "pois",
2314
+ "icon_index": 26,
2315
+ "icon_color": "#678899ff",
2316
+ "text_size": 12,
2317
+ "text_color": "#678899ff",
2318
+ "text_halo_color": "#fdfdfd"
2319
+ },
2320
+ "metadata": {
2321
+ "key": "industrial_zone",
2322
+ "group": "Địa điểm",
2323
+ "isDefault": true
2324
+ }
2325
+ },
2326
+ {
2327
+ "id": "pois_campground_symbol",
2328
+ "type": "symbol",
2329
+ "source": "map4d",
2330
+ "source_layer": "pois",
2331
+ "filter": {
2332
+ "kind": [
2333
+ "campground"
2334
+ ]
2335
+ },
2336
+ "draw": {
2337
+ "icon_image": "pois",
2338
+ "icon_index": 27,
2339
+ "icon_color": "#12b5cbff",
2340
+ "text_size": 12,
2341
+ "text_color": "#12b5cbff",
2342
+ "text_halo_color": "#fdfdfd"
2343
+ },
2344
+ "metadata": {
2345
+ "key": "campground",
2346
+ "group": "Địa điểm",
2347
+ "isDefault": true
2348
+ }
2349
+ },
2350
+ {
2351
+ "id": "pois_museum_symbol",
2352
+ "type": "symbol",
2353
+ "source": "map4d",
2354
+ "source_layer": "pois",
2355
+ "filter": {
2356
+ "kind": [
2357
+ "museum",
2358
+ "art_gallery"
2359
+ ]
2360
+ },
2361
+ "draw": {
2362
+ "icon_image": "pois",
2363
+ "icon_index": 28,
2364
+ "icon_color": "#678899ff",
2365
+ "text_size": 12,
2366
+ "text_color": "#678899ff",
2367
+ "text_halo_color": "#fdfdfd"
2368
+ },
2369
+ "metadata": {
2370
+ "key": "museum",
2371
+ "group": "Địa điểm",
2372
+ "isDefault": true
2373
+ }
2374
+ },
2375
+ {
2376
+ "id": "pois_public_beach_symbol",
2377
+ "type": "symbol",
2378
+ "source": "map4d",
2379
+ "source_layer": "pois",
2380
+ "filter": {
2381
+ "kind": [
2382
+ "public_beach"
2383
+ ]
2384
+ },
2385
+ "draw": {
2386
+ "icon_image": "pois",
2387
+ "icon_index": 52,
2388
+ "icon_color": "#12b5cbff",
2389
+ "text_size": 12,
2390
+ "text_color": "#12b5cbff",
2391
+ "text_halo_color": "#fdfdfd"
2392
+ },
2393
+ "metadata": {
2394
+ "key": "public_beach",
2395
+ "group": "Địa điểm",
2396
+ "isDefault": true
2397
+ }
2398
+ },
2399
+ {
2400
+ "id": "pois_gym_symbol",
2401
+ "type": "symbol",
2402
+ "source": "map4d",
2403
+ "source_layer": "pois",
2404
+ "filter": {
2405
+ "kind": [
2406
+ "gym"
2407
+ ]
2408
+ },
2409
+ "draw": {
2410
+ "icon_image": "pois",
2411
+ "icon_index": 29,
2412
+ "icon_color": "#8d70d5ff",
2413
+ "text_size": 12,
2414
+ "text_color": "#8d70d5ff",
2415
+ "text_halo_color": "#fdfdfd"
2416
+ },
2417
+ "metadata": {
2418
+ "key": "gym",
2419
+ "group": "Địa điểm",
2420
+ "isDefault": true
2421
+ }
2422
+ },
2423
+ {
2424
+ "id": "pois_sports_center_symbol",
2425
+ "type": "symbol",
2426
+ "source": "map4d",
2427
+ "source_layer": "pois",
2428
+ "filter": {
2429
+ "kind": [
2430
+ "sports_center"
2431
+ ]
2432
+ },
2433
+ "draw": {
2434
+ "icon_image": "pois",
2435
+ "icon_index": 30,
2436
+ "icon_color": "#8d70d5ff",
2437
+ "text_size": 12,
2438
+ "text_color": "#8d70d5ff",
2439
+ "text_halo_color": "#fdfdfd"
2440
+ },
2441
+ "metadata": {
2442
+ "key": "sports_center",
2443
+ "group": "Địa điểm",
2444
+ "isDefault": true
2445
+ }
2446
+ },
2447
+ {
2448
+ "id": "pois_stadium_symbol",
2449
+ "type": "symbol",
2450
+ "source": "map4d",
2451
+ "source_layer": "pois",
2452
+ "filter": {
2453
+ "kind": [
2454
+ "stadium"
2455
+ ]
2456
+ },
2457
+ "draw": {
2458
+ "icon_image": "pois",
2459
+ "icon_index": 31,
2460
+ "icon_color": "#8d70d5ff",
2461
+ "text_size": 12,
2462
+ "text_color": "#8d70d5ff",
2463
+ "text_halo_color": "#fdfdfd"
2464
+ },
2465
+ "metadata": {
2466
+ "key": "stadium",
2467
+ "group": "Địa điểm",
2468
+ "isDefault": true
2469
+ }
2470
+ },
2471
+ {
2472
+ "id": "pois_park_symbol",
2473
+ "type": "symbol",
2474
+ "source": "map4d",
2475
+ "source_layer": "pois",
2476
+ "filter": {
2477
+ "kind": [
2478
+ "park",
2479
+ "zoo"
2480
+ ]
2481
+ },
2482
+ "draw": {
2483
+ "icon_image": "pois",
2484
+ "icon_index": 32,
2485
+ "icon_color": "#34a853ff",
2486
+ "text_size": 12,
2487
+ "text_color": "#34a853ff",
2488
+ "text_halo_color": "#fdfdfd"
2489
+ },
2490
+ "metadata": {
2491
+ "key": "park",
2492
+ "group": "Địa điểm",
2493
+ "isDefault": true
2494
+ }
2495
+ },
2496
+ {
2497
+ "id": "pois_golf_symbol",
2498
+ "type": "symbol",
2499
+ "source": "map4d",
2500
+ "source_layer": "pois",
2501
+ "filter": {
2502
+ "kind": [
2503
+ "golf"
2504
+ ]
2505
+ },
2506
+ "draw": {
2507
+ "icon_image": "pois",
2508
+ "icon_index": 33,
2509
+ "icon_color": "#8d70d5ff",
2510
+ "text_size": 12,
2511
+ "text_color": "#8d70d5ff",
2512
+ "text_halo_color": "#fdfdfd"
2513
+ },
2514
+ "metadata": {
2515
+ "key": "golf",
2516
+ "group": "Địa điểm",
2517
+ "isDefault": true
2518
+ }
2519
+ },
2520
+ {
2521
+ "id": "pois_amusement_park_symbol",
2522
+ "type": "symbol",
2523
+ "source": "map4d",
2524
+ "source_layer": "pois",
2525
+ "filter": {
2526
+ "kind": [
2527
+ "amusement_park"
2528
+ ]
2529
+ },
2530
+ "draw": {
2531
+ "icon_image": "pois",
2532
+ "icon_index": 34,
2533
+ "icon_color": "#12b5cbff",
2534
+ "text_size": 12,
2535
+ "text_color": "#12b5cbff",
2536
+ "text_halo_color": "#fdfdfd"
2537
+ },
2538
+ "metadata": {
2539
+ "key": "amusement_park",
2540
+ "group": "Địa điểm",
2541
+ "isDefault": true
2542
+ }
2543
+ },
2544
+ {
2545
+ "id": "pois_cinema_symbol",
2546
+ "type": "symbol",
2547
+ "source": "map4d",
2548
+ "source_layer": "pois",
2549
+ "filter": {
2550
+ "kind": [
2551
+ "cinema"
2552
+ ]
2553
+ },
2554
+ "draw": {
2555
+ "icon_image": "pois",
2556
+ "icon_index": 34,
2557
+ "icon_color": "#12b5cbff",
2558
+ "text_size": 12,
2559
+ "text_color": "#12b5cbff",
2560
+ "text_halo_color": "#fdfdfd"
2561
+ },
2562
+ "metadata": {
2563
+ "key": "cinema",
2564
+ "group": "Địa điểm",
2565
+ "isDefault": true
2566
+ }
2567
+ },
2568
+ {
2569
+ "id": "pois_library_symbol",
2570
+ "type": "symbol",
2571
+ "source": "map4d",
2572
+ "source_layer": "pois",
2573
+ "filter": {
2574
+ "kind": [
2575
+ "library"
2576
+ ]
2577
+ },
2578
+ "draw": {
2579
+ "icon_image": "pois",
2580
+ "icon_index": 36,
2581
+ "icon_color": "#678899ff",
2582
+ "text_size": 12,
2583
+ "text_color": "#678899ff",
2584
+ "text_halo_color": "#fdfdfd"
2585
+ },
2586
+ "metadata": {
2587
+ "key": "library",
2588
+ "group": "Địa điểm",
2589
+ "isDefault": true
2590
+ }
2591
+ },
2592
+ {
2593
+ "id": "pois_theater_symbol",
2594
+ "type": "symbol",
2595
+ "source": "map4d",
2596
+ "source_layer": "pois",
2597
+ "filter": {
2598
+ "kind": [
2599
+ "theater"
2600
+ ]
2601
+ },
2602
+ "draw": {
2603
+ "icon_image": "pois",
2604
+ "icon_index": 37,
2605
+ "icon_color": "#12b5cbff",
2606
+ "text_size": 12,
2607
+ "text_color": "#12b5cbff",
2608
+ "text_halo_color": "#fdfdfd"
2609
+ },
2610
+ "metadata": {
2611
+ "key": "theater",
2612
+ "group": "Địa điểm",
2613
+ "isDefault": true
2614
+ }
2615
+ },
2616
+ {
2617
+ "id": "pois_spa_symbol",
2618
+ "type": "symbol",
2619
+ "source": "map4d",
2620
+ "source_layer": "pois",
2621
+ "filter": {
2622
+ "kind": [
2623
+ "spa",
2624
+ "hair_care",
2625
+ "beauty_salon"
2626
+ ]
2627
+ },
2628
+ "draw": {
2629
+ "icon_image": "pois",
2630
+ "icon_index": 38,
2631
+ "icon_color": "#8d70d5ff",
2632
+ "text_size": 12,
2633
+ "text_color": "#8d70d5ff",
2634
+ "text_halo_color": "#fdfdfd"
2635
+ },
2636
+ "metadata": {
2637
+ "key": "spa",
2638
+ "group": "Địa điểm",
2639
+ "isDefault": true
2640
+ }
2641
+ },
2642
+ {
2643
+ "id": "pois_casino_symbol",
2644
+ "type": "symbol",
2645
+ "source": "map4d",
2646
+ "source_layer": "pois",
2647
+ "filter": {
2648
+ "kind": [
2649
+ "casino"
2650
+ ]
2651
+ },
2652
+ "draw": {
2653
+ "icon_image": "pois",
2654
+ "icon_index": 39,
2655
+ "icon_color": "#12b5cbff",
2656
+ "text_size": 12,
2657
+ "text_color": "#12b5cbff",
2658
+ "text_halo_color": "#fdfdfd"
2659
+ },
2660
+ "metadata": {
2661
+ "key": "casino",
2662
+ "group": "Địa điểm",
2663
+ "isDefault": true
2664
+ }
2665
+ },
2666
+ {
2667
+ "id": "pois_courthouse_symbol",
2668
+ "type": "symbol",
2669
+ "source": "map4d",
2670
+ "source_layer": "pois",
2671
+ "filter": {
2672
+ "kind": [
2673
+ "courthouse",
2674
+ "lawyer"
2675
+ ]
2676
+ },
2677
+ "draw": {
2678
+ "icon_image": "pois",
2679
+ "icon_index": 40,
2680
+ "icon_color": "#678899ff",
2681
+ "text_size": 12,
2682
+ "text_color": "#678899ff",
2683
+ "text_halo_color": "#fdfdfd"
2684
+ },
2685
+ "metadata": {
2686
+ "key": "courthouse",
2687
+ "group": "Địa điểm",
2688
+ "isDefault": true
2689
+ }
2690
+ },
2691
+ {
2692
+ "id": "pois_police_symbol",
2693
+ "type": "symbol",
2694
+ "source": "map4d",
2695
+ "source_layer": "pois",
2696
+ "filter": {
2697
+ "kind": [
2698
+ "police"
2699
+ ]
2700
+ },
2701
+ "draw": {
2702
+ "icon_image": "pois",
2703
+ "icon_index": 41,
2704
+ "icon_color": "#678899ff",
2705
+ "text_size": 12,
2706
+ "text_color": "#678899ff",
2707
+ "text_halo_color": "#fdfdfd"
2708
+ },
2709
+ "metadata": {
2710
+ "key": "police",
2711
+ "group": "Địa điểm",
2712
+ "isDefault": true
2713
+ }
2714
+ },
2715
+ {
2716
+ "id": "pois_committee_symbol",
2717
+ "type": "symbol",
2718
+ "source": "map4d",
2719
+ "source_layer": "pois",
2720
+ "filter": {
2721
+ "kind": [
2722
+ "committee"
2723
+ ]
2724
+ },
2725
+ "draw": {
2726
+ "icon_image": "pois",
2727
+ "icon_index": 42,
2728
+ "icon_color": "#678899ff",
2729
+ "text_size": 12,
2730
+ "text_color": "#678899ff",
2731
+ "text_halo_color": "#fdfdfd"
2732
+ },
2733
+ "metadata": {
2734
+ "key": "committee",
2735
+ "group": "Địa điểm",
2736
+ "isDefault": true
2737
+ }
2738
+ },
2739
+ {
2740
+ "id": "pois_political_symbol",
2741
+ "type": "symbol",
2742
+ "source": "map4d",
2743
+ "source_layer": "pois",
2744
+ "filter": {
2745
+ "kind": [
2746
+ "political"
2747
+ ]
2748
+ },
2749
+ "draw": {
2750
+ "icon_image": "pois",
2751
+ "icon_index": 43,
2752
+ "icon_color": "#678899ff",
2753
+ "text_size": 12,
2754
+ "text_color": "#678899ff",
2755
+ "text_halo_color": "#fdfdfd"
2756
+ },
2757
+ "metadata": {
2758
+ "key": "political",
2759
+ "group": "Địa điểm",
2760
+ "isDefault": true
2761
+ }
2762
+ },
2763
+ {
2764
+ "id": "pois_community_center_symbol",
2765
+ "type": "symbol",
2766
+ "source": "map4d",
2767
+ "source_layer": "pois",
2768
+ "filter": {
2769
+ "kind": [
2770
+ "community_center"
2771
+ ]
2772
+ },
2773
+ "draw": {
2774
+ "icon_image": "pois",
2775
+ "icon_index": 44,
2776
+ "icon_color": "#678899ff",
2777
+ "text_size": 12,
2778
+ "text_color": "#678899ff",
2779
+ "text_halo_color": "#fdfdfd"
2780
+ },
2781
+ "metadata": {
2782
+ "key": "community_center",
2783
+ "group": "Địa điểm",
2784
+ "isDefault": true
2785
+ }
2786
+ },
2787
+ {
2788
+ "id": "pois_fire_station_symbol",
2789
+ "type": "symbol",
2790
+ "source": "map4d",
2791
+ "source_layer": "pois",
2792
+ "filter": {
2793
+ "kind": [
2794
+ "fire_station"
2795
+ ]
2796
+ },
2797
+ "draw": {
2798
+ "icon_image": "pois",
2799
+ "icon_index": 45,
2800
+ "icon_color": "#678899ff",
2801
+ "text_size": 12,
2802
+ "text_color": "#678899ff",
2803
+ "text_halo_color": "#fdfdfd"
2804
+ },
2805
+ "metadata": {
2806
+ "key": "fire_station",
2807
+ "group": "Địa điểm",
2808
+ "isDefault": true
2809
+ }
2810
+ },
2811
+ {
2812
+ "id": "pois_post_office_symbol",
2813
+ "type": "symbol",
2814
+ "source": "map4d",
2815
+ "source_layer": "pois",
2816
+ "filter": {
2817
+ "kind": [
2818
+ "post_office"
2819
+ ]
2820
+ },
2821
+ "draw": {
2822
+ "icon_image": "pois",
2823
+ "icon_index": 46,
2824
+ "icon_color": "#678899ff",
2825
+ "text_size": 12,
2826
+ "text_color": "#678899ff",
2827
+ "text_halo_color": "#fdfdfd"
2828
+ },
2829
+ "metadata": {
2830
+ "key": "post_office",
2831
+ "group": "Địa điểm",
2832
+ "isDefault": true
2833
+ }
2834
+ },
2835
+ {
2836
+ "id": "pois_veterinary_care_symbol",
2837
+ "type": "symbol",
2838
+ "source": "map4d",
2839
+ "source_layer": "pois",
2840
+ "filter": {
2841
+ "kind": [
2842
+ "veterinary_care"
2843
+ ]
2844
+ },
2845
+ "draw": {
2846
+ "icon_image": "pois",
2847
+ "icon_index": 9,
2848
+ "icon_color": "#f56357ff",
2849
+ "text_size": 12,
2850
+ "text_color": "#f56357ff",
2851
+ "text_halo_color": "#fdfdfd"
2852
+ },
2853
+ "metadata": {
2854
+ "key": "veterinary_care",
2855
+ "group": "Địa điểm",
2856
+ "isDefault": true
2857
+ }
2858
+ },
2859
+ {
2860
+ "id": "pois_public_restroom_symbol",
2861
+ "type": "symbol",
2862
+ "source": "map4d",
2863
+ "source_layer": "pois",
2864
+ "filter": {
2865
+ "kind": [
2866
+ "public_restroom"
2867
+ ]
2868
+ },
2869
+ "draw": {
2870
+ "icon_image": "pois",
2871
+ "icon_index": 47,
2872
+ "icon_color": "#678899ff",
2873
+ "text_size": 12,
2874
+ "text_color": "#678899ff",
2875
+ "text_halo_color": "#fdfdfd"
2876
+ },
2877
+ "metadata": {
2878
+ "key": "public_restroom",
2879
+ "group": "Địa điểm",
2880
+ "isDefault": true
2881
+ }
2882
+ },
2883
+ {
2884
+ "id": "pois_cemetery_symbol",
2885
+ "type": "symbol",
2886
+ "source": "map4d",
2887
+ "source_layer": "pois",
2888
+ "filter": {
2889
+ "kind": [
2890
+ "cemetery"
2891
+ ]
2892
+ },
2893
+ "draw": {
2894
+ "icon_image": "pois",
2895
+ "icon_index": 48,
2896
+ "icon_color": "#678899ff",
2897
+ "text_size": 12,
2898
+ "text_color": "#678899ff",
2899
+ "text_halo_color": "#fdfdfd"
2900
+ },
2901
+ "metadata": {
2902
+ "key": "cemetery",
2903
+ "group": "Địa điểm",
2904
+ "isDefault": true
2905
+ }
2906
+ },
2907
+ {
2908
+ "id": "pois_bridge_symbol",
2909
+ "type": "symbol",
2910
+ "source": "map4d",
2911
+ "source_layer": "pois",
2912
+ "filter": {
2913
+ "kind": [
2914
+ "bridge"
2915
+ ]
2916
+ },
2917
+ "draw": {
2918
+ "icon_image": "pois",
2919
+ "icon_index": 49,
2920
+ "icon_color": "#678899ff",
2921
+ "text_size": 12,
2922
+ "text_color": "#678899ff",
2923
+ "text_halo_color": "#fdfdfd"
2924
+ },
2925
+ "metadata": {
2926
+ "key": "bridge",
2927
+ "group": "Địa điểm",
2928
+ "isDefault": true
2929
+ }
2930
+ },
2931
+ {
2932
+ "id": "pois_power_station_symbol",
2933
+ "type": "symbol",
2934
+ "source": "map4d",
2935
+ "source_layer": "pois",
2936
+ "filter": {
2937
+ "kind": [
2938
+ "power_station"
2939
+ ]
2940
+ },
2941
+ "draw": {
2942
+ "icon_image": "pois",
2943
+ "icon_index": 51,
2944
+ "icon_color": "#678899ff",
2945
+ "text_size": 12,
2946
+ "text_color": "#678899ff",
2947
+ "text_halo_color": "#fdfdfd"
2948
+ },
2949
+ "metadata": {
2950
+ "key": "power_station",
2951
+ "group": "Địa điểm",
2952
+ "isDefault": true
2953
+ }
2954
+ },
2955
+ {
2956
+ "id": "pois_resort_symbol",
2957
+ "type": "symbol",
2958
+ "source": "map4d",
2959
+ "source_layer": "pois",
2960
+ "filter": {
2961
+ "kind": [
2962
+ "resort"
2963
+ ]
2964
+ },
2965
+ "draw": {
2966
+ "icon_image": "pois",
2967
+ "icon_index": 18,
2968
+ "icon_color": "#f06292ff",
2969
+ "text_size": 12,
2970
+ "text_color": "#f06292ff",
2971
+ "text_halo_color": "#fdfdfd"
2972
+ },
2973
+ "metadata": {
2974
+ "key": "resort",
2975
+ "group": "Địa điểm",
2976
+ "isDefault": true
2977
+ }
2978
+ },
2979
+ {
2980
+ "id": "pois_food_service_symbol",
2981
+ "type": "symbol",
2982
+ "source": "map4d",
2983
+ "source_layer": "pois",
2984
+ "filter": {
2985
+ "kind": [
2986
+ "food_service",
2987
+ "bakery",
2988
+ "eatery",
2989
+ "fast_food",
2990
+ "sweet_soup",
2991
+ "ice_cream_shop",
2992
+ "take_away",
2993
+ "restaurant",
2994
+ "beer_bar"
2995
+ ]
2996
+ },
2997
+ "draw": {
2998
+ "icon_image": "pois",
2999
+ "icon_index": 20,
3000
+ "icon_color": "#f19800ff",
3001
+ "text_size": 12,
3002
+ "text_color": "#f19800ff",
3003
+ "text_halo_color": "#fdfdfd"
3004
+ },
3005
+ "metadata": {
3006
+ "key": "food_service",
3007
+ "group": "Địa điểm",
3008
+ "isDefault": true
3009
+ }
3010
+ },
3011
+ {
3012
+ "id": "pois_tourist_attraction_symbol",
3013
+ "type": "symbol",
3014
+ "source": "map4d",
3015
+ "source_layer": "pois",
3016
+ "filter": {
3017
+ "kind": [
3018
+ "tourist_attraction"
3019
+ ]
3020
+ },
3021
+ "draw": {
3022
+ "icon_image": "pois",
3023
+ "icon_index": 53,
3024
+ "icon_color": "#00bcfcff",
3025
+ "text_size": 12,
3026
+ "text_color": "#00bcfcff",
3027
+ "text_halo_color": "#fdfdfd"
3028
+ },
3029
+ "metadata": {
3030
+ "key": "tourist_attraction",
3031
+ "group": "Địa điểm",
3032
+ "isDefault": true
3033
+ }
3034
+ },
3035
+ {
3036
+ "id": "pois_bar_symbol",
3037
+ "type": "symbol",
3038
+ "source": "map4d",
3039
+ "source_layer": "pois",
3040
+ "filter": {
3041
+ "kind": [
3042
+ "bar",
3043
+ "pub",
3044
+ "karaoke"
3045
+ ]
3046
+ },
3047
+ "draw": {
3048
+ "icon_image": "pois",
3049
+ "icon_index": 21,
3050
+ "icon_color": "#f19800ff",
3051
+ "text_size": 12,
3052
+ "text_color": "#f19800ff",
3053
+ "text_halo_color": "#fdfdfd"
3054
+ },
3055
+ "metadata": {
3056
+ "key": "bar",
3057
+ "group": "Địa điểm",
3058
+ "isDefault": true
3059
+ }
3060
+ },
3061
+ {
3062
+ "id": "pois_harbour_symbol",
3063
+ "type": "symbol",
3064
+ "source": "map4d",
3065
+ "source_layer": "pois",
3066
+ "filter": {
3067
+ "kind": [
3068
+ "harbour"
3069
+ ]
3070
+ },
3071
+ "draw": {
3072
+ "icon_image": "pois",
3073
+ "icon_index": 50,
3074
+ "icon_color": "#678899ff",
3075
+ "text_size": 12,
3076
+ "text_color": "#678899ff",
3077
+ "text_halo_color": "#fdfdfd"
3078
+ },
3079
+ "metadata": {
3080
+ "key": "harbour",
3081
+ "group": "Địa điểm",
3082
+ "isDefault": true
3083
+ }
3084
+ },
3085
+ {
3086
+ "id": "landuse_landuse_fill",
3087
+ "type": "fill",
3088
+ "source": "map4d",
3089
+ "source_layer": "landuse",
3090
+ "draw": {},
3091
+ "metadata": {
3092
+ "key": "landuse",
3093
+ "group": "Các bề mặt",
3094
+ "isDefault": true
3095
+ }
3096
+ },
3097
+ {
3098
+ "id": "landuse_aerodrome_fill",
3099
+ "type": "fill",
3100
+ "source": "map4d",
3101
+ "source_layer": "landuse",
3102
+ "filter": {
3103
+ "kind": [
3104
+ "aerodrome",
3105
+ "apron"
3106
+ ]
3107
+ },
3108
+ "draw": {
3109
+ "color": "#e8eaedff"
3110
+ },
3111
+ "metadata": {
3112
+ "key": "aerodrome",
3113
+ "group": "Các bề mặt",
3114
+ "isDefault": true
3115
+ }
3116
+ },
3117
+ {
3118
+ "id": "landuse_grass_fill",
3119
+ "type": "fill",
3120
+ "source": "map4d",
3121
+ "source_layer": "landuse",
3122
+ "filter": {
3123
+ "kind": [
3124
+ "grass",
3125
+ "forest",
3126
+ "park",
3127
+ "theme_park",
3128
+ "grassland",
3129
+ "natural_wood",
3130
+ "garden",
3131
+ "cemetery",
3132
+ "attraction",
3133
+ "golf_course"
3134
+ ]
3135
+ },
3136
+ "draw": {
3137
+ "color": "#ceead6ff"
3138
+ },
3139
+ "metadata": {
3140
+ "key": "grass",
3141
+ "group": "Các bề mặt",
3142
+ "isDefault": true
3143
+ }
3144
+ },
3145
+ {
3146
+ "id": "landuse_hospital_fill",
3147
+ "type": "fill",
3148
+ "source": "map4d",
3149
+ "source_layer": "landuse",
3150
+ "filter": {
3151
+ "kind": [
3152
+ "hospital"
3153
+ ]
3154
+ },
3155
+ "draw": {
3156
+ "color": "#FCE8E6"
3157
+ },
3158
+ "metadata": {
3159
+ "key": "hospital",
3160
+ "group": "Các bề mặt",
3161
+ "isDefault": true
3162
+ }
3163
+ },
3164
+ {
3165
+ "id": "landuse_university_fill",
3166
+ "type": "fill",
3167
+ "source": "map4d",
3168
+ "source_layer": "landuse",
3169
+ "filter": {
3170
+ "kind": [
3171
+ "university",
3172
+ "school",
3173
+ "college"
3174
+ ]
3175
+ },
3176
+ "draw": {
3177
+ "color": "#F6F7F9"
3178
+ },
3179
+ "metadata": {
3180
+ "key": "university",
3181
+ "group": "Các bề mặt",
3182
+ "isDefault": true
3183
+ }
3184
+ },
3185
+ {
3186
+ "id": "landuse_stadium_fill",
3187
+ "type": "fill",
3188
+ "source": "map4d",
3189
+ "source_layer": "landuse",
3190
+ "filter": {
3191
+ "kind": [
3192
+ "stadium",
3193
+ "pitch",
3194
+ "sports_centre"
3195
+ ]
3196
+ },
3197
+ "draw": {
3198
+ "color": "#ceead6ff"
3199
+ },
3200
+ "metadata": {
3201
+ "key": "stadium",
3202
+ "group": "Các bề mặt",
3203
+ "isDefault": true
3204
+ }
3205
+ },
3206
+ {
3207
+ "id": "landuse_beach_fill",
3208
+ "type": "fill",
3209
+ "source": "map4d",
3210
+ "source_layer": "landuse",
3211
+ "filter": {
3212
+ "kind": [
3213
+ "beach"
3214
+ ]
3215
+ },
3216
+ "draw": {
3217
+ "color": "#f1e9d7ff"
3218
+ },
3219
+ "metadata": {
3220
+ "key": "beach",
3221
+ "group": "Các bề mặt",
3222
+ "isDefault": true
3223
+ }
3224
+ },
3225
+ {
3226
+ "id": "landuse_pedestrian_fill",
3227
+ "type": "fill",
3228
+ "source": "map4d",
3229
+ "source_layer": "landuse",
3230
+ "filter": {
3231
+ "kind": [
3232
+ "pedestrian"
3233
+ ]
3234
+ },
3235
+ "draw": {
3236
+ "color": "#ebf7edff"
3237
+ },
3238
+ "metadata": {
3239
+ "key": "pedestrian",
3240
+ "group": "Các bề mặt",
3241
+ "isDefault": true
3242
+ }
3243
+ },
3244
+ {
3245
+ "id": "landuse_substation_fill",
3246
+ "type": "fill",
3247
+ "source": "map4d",
3248
+ "source_layer": "landuse",
3249
+ "filter": {
3250
+ "kind": [
3251
+ "substation",
3252
+ "power_line"
3253
+ ]
3254
+ },
3255
+ "draw": {
3256
+ "color": "#e6e8eaff"
3257
+ },
3258
+ "metadata": {
3259
+ "key": "substation",
3260
+ "group": "Các bề mặt",
3261
+ "isDefault": true
3262
+ }
3263
+ },
3264
+ {
3265
+ "id": "landuse_urban_area_fill",
3266
+ "type": "fill",
3267
+ "source": "map4d",
3268
+ "source_layer": "landuse",
3269
+ "filter": {
3270
+ "kind": [
3271
+ "urban_area"
3272
+ ]
3273
+ },
3274
+ "draw": {
3275
+ "color": "#E2E4E6"
3276
+ },
3277
+ "metadata": {
3278
+ "key": "urban_area",
3279
+ "group": "Các bề mặt",
3280
+ "isDefault": true
3281
+ }
3282
+ },
3283
+ {
3284
+ "id": "buildings_buildings_fill",
3285
+ "type": "fill",
3286
+ "source": "map4d",
3287
+ "source_layer": "buildings",
3288
+ "draw": {
3289
+ "color": "#fef7e0ff"
3290
+ },
3291
+ "metadata": {
3292
+ "key": "buildings",
3293
+ "group": "Công trình xây dựng",
3294
+ "isDefault": true
3295
+ }
3296
+ },
3297
+ {
3298
+ "id": "buildings_building_fill",
3299
+ "type": "fill",
3300
+ "source": "map4d",
3301
+ "source_layer": "buildings",
3302
+ "filter": {
3303
+ "kind": [
3304
+ "building",
3305
+ "building_part"
3306
+ ]
3307
+ },
3308
+ "draw": {
3309
+ "color": "#e6e8eaff"
3310
+ },
3311
+ "metadata": {
3312
+ "key": "building",
3313
+ "group": "Công trình xây dựng",
3314
+ "isDefault": true
3315
+ }
3316
+ },
3317
+ {
3318
+ "id": "buildings_roof_fill",
3319
+ "type": "fill",
3320
+ "source": "map4d",
3321
+ "source_layer": "buildings",
3322
+ "filter": {
3323
+ "kind": [
3324
+ "building",
3325
+ "building_part"
3326
+ ],
3327
+ "kind_detail": [
3328
+ "roof"
3329
+ ]
3330
+ },
3331
+ "draw": {
3332
+ "color": "#fef7e0ff"
3333
+ },
3334
+ "metadata": {
3335
+ "key": "roof",
3336
+ "group": "Công trình xây dựng",
3337
+ "isDefault": true
3338
+ }
3339
+ },
3340
+ {
3341
+ "id": "buildings_entrance_exit_fill",
3342
+ "type": "fill",
3343
+ "source": "map4d",
3344
+ "source_layer": "buildings",
3345
+ "filter": {
3346
+ "kind": [
3347
+ "entrance",
3348
+ "exit"
3349
+ ]
3350
+ },
3351
+ "draw": {
3352
+ "color": "#fef7e0ff"
3353
+ },
3354
+ "metadata": {
3355
+ "key": "entrance_exit",
3356
+ "group": "Công trình xây dựng",
3357
+ "isDefault": true
3358
+ }
3359
+ }
3360
+ ],
3361
+ "tool-version": "2.0.1",
3362
+ "version": 2
3363
+ }
3364
+
3365
+ export default defaultRoadmapStyle