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,2288 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ const defaultRoadmapStyle = {
8
+ "web-version": "2.2.0",
9
+ "mobile-version": "2.1.0",
10
+ "sources": {
11
+ "map4d": {
12
+ "url": "map4d://tiles"
13
+ },
14
+ "geojson": {
15
+ "type": "json",
16
+ "url": ""
17
+ }
18
+ },
19
+ "images": {
20
+ "pois": {
21
+ "type": "simple_sprite",
22
+ "url": ["https://maptile.s3-sgn10.fptcloud.com/v1/AUTH_b32b6bc102c44269ab7b55e7820e7116/data/images/627cd15e9c4fa69f92878f59.png", "https://maptile.s3-sgn10.fptcloud.com/v1/AUTH_b32b6bc102c44269ab7b55e7820e7116/data/images/627cd15e9c4fa69f92878f5a.png", "https://maptile.s3-sgn10.fptcloud.com/v1/AUTH_b32b6bc102c44269ab7b55e7820e7116/data/images/627cd15e9c4fa69f92878f5b.png"],
23
+ "width": 26,
24
+ "height": 32
25
+ }
26
+ },
27
+ "patterns": {
28
+ "dashdash": {
29
+ "type": "dash",
30
+ "gap": 3,
31
+ "length": 3,
32
+ "repeat": 2
33
+ },
34
+ "dotdot": {
35
+ "type": "dot",
36
+ "repeat": 2
37
+ }
38
+ },
39
+ "layers": [{
40
+ "id": "earth_earth_fill",
41
+ "type": "background",
42
+ "filter": null,
43
+ "draw": {
44
+ "color": [[2, "#f8f9faff"]]
45
+ },
46
+ "metadata": {
47
+ "key": "earth",
48
+ "name": "Màu nền/Vùng đất",
49
+ "isDefault": true
50
+ }
51
+ }, {
52
+ "id": "water_water_fill",
53
+ "type": "fill",
54
+ "source": "map4d",
55
+ "source_layer": "water",
56
+ "filter": null,
57
+ "draw": {
58
+ "color": "#94c0f2ff"
59
+ },
60
+ "metadata": {
61
+ "name": "Nước",
62
+ "key": "water",
63
+ "isDefault": true
64
+ }
65
+ }, {
66
+ "id": "water_water_line",
67
+ "type": "line",
68
+ "source": "map4d",
69
+ "source_layer": "water",
70
+ "filter": null,
71
+ "draw": {
72
+ "color": "#94c0f2ff",
73
+ "width": [[12, 1], [14, 2]]
74
+ },
75
+ "metadata": {
76
+ "name": "Đường bờ biển",
77
+ "key": "water",
78
+ "isDefault": true
79
+ }
80
+ }, {
81
+ "id": "roads_highway_line",
82
+ "type": "line",
83
+ "source": "map4d",
84
+ "source_layer": "roads",
85
+ "filter": {
86
+ "kind": ["highway"]
87
+ },
88
+ "draw": {
89
+ "width": [[7, 1], [10, 2], [14, 3], [15, 5], [16, 8], [17, 13], [18, 20], [19, 36]],
90
+ "color": "#fddc7fff",
91
+ "outline_width": [[8, 1]],
92
+ "outline_color": "#daa130ff"
93
+ },
94
+ "metadata": {
95
+ "name": "Cao tốc",
96
+ "group": "Đường giao thông",
97
+ "isDefault": true
98
+ }
99
+ }, {
100
+ "id": "roads_highway_label",
101
+ "type": "label",
102
+ "source": "map4d",
103
+ "source_layer": "roads",
104
+ "filter": {
105
+ "kind": ["highway"]
106
+ },
107
+ "draw": {
108
+ "text_size": [[7, 12]],
109
+ "text_color": "#783b03ff",
110
+ "text_halo_color": "#FFF"
111
+ },
112
+ "metadata": {
113
+ "key": "highway",
114
+ "group": "Tên đường giao thông",
115
+ "isDefault": true
116
+ }
117
+ }, {
118
+ "id": "roads_major_road_line",
119
+ "type": "line",
120
+ "source": "map4d",
121
+ "source_layer": "roads",
122
+ "filter": {
123
+ "kind": ["major_road"]
124
+ },
125
+ "draw": {
126
+ "width": [[10, 1], [15, 4], [16, 8], [17, 13], [18, 20], [19, 36]],
127
+ "color": "#ffffffff",
128
+ "outline_width": [[10, 1]],
129
+ "outline_color": "#dfe0e4ff"
130
+ },
131
+ "metadata": {
132
+ "name": "Đường chính",
133
+ "group": "Đường giao thông",
134
+ "isDefault": true
135
+ }
136
+ }, {
137
+ "id": "roads_major_road_label",
138
+ "type": "label",
139
+ "source": "map4d",
140
+ "source_layer": "roads",
141
+ "filter": {
142
+ "kind": ["major_road"]
143
+ },
144
+ "draw": {
145
+ "text_size": [[5, 12]],
146
+ "text_color": "#4e5256ff",
147
+ "text_halo_color": "#FFF"
148
+ },
149
+ "metadata": {
150
+ "key": "major_road",
151
+ "group": "Tên đường giao thông",
152
+ "isDefault": true
153
+ }
154
+ }, {
155
+ "id": "roads_primary_line",
156
+ "type": "line",
157
+ "source": "map4d",
158
+ "source_layer": "roads",
159
+ "filter": {
160
+ "kind": ["major_road"],
161
+ "kind_detail": ["primary", "primary_link"]
162
+ },
163
+ "draw": {
164
+ "width": [[8, 1], [14, 3], [15, 5], [16, 8], [17, 13], [18, 20], [19, 36]],
165
+ "color": "#ffffffff",
166
+ "outline_width": [[8, 1]],
167
+ "outline_color": "#dfe0e4ff"
168
+ },
169
+ "metadata": {
170
+ "name": "Đường lớn",
171
+ "group": "Đường giao thông",
172
+ "isDefault": true
173
+ }
174
+ }, {
175
+ "id": "roads_primary_label",
176
+ "type": "label",
177
+ "source": "map4d",
178
+ "source_layer": "roads",
179
+ "filter": {
180
+ "kind": ["major_road"],
181
+ "kind_detail": ["primary", "primary_link"]
182
+ },
183
+ "draw": {
184
+ "text_size": 12,
185
+ "text_color": "#4e5256ff",
186
+ "text_halo_color": "#FFF"
187
+ },
188
+ "metadata": {
189
+ "key": "primary",
190
+ "group": "Tên đường giao thông",
191
+ "isDefault": true
192
+ }
193
+ }, {
194
+ "id": "roads_trunk_line",
195
+ "type": "line",
196
+ "source": "map4d",
197
+ "source_layer": "roads",
198
+ "filter": {
199
+ "kind": ["major_road"],
200
+ "kind_detail": ["trunk", "trunk_link"]
201
+ },
202
+ "draw": {
203
+ "width": [[7, 1], [10, 2], [14, 3], [15, 5], [16, 8], [17, 13], [18, 20], [19, 36]],
204
+ "color": [[7, "#fdeec1ff"], [13, "#fde293ff"]],
205
+ "outline_width": [[8, 1]],
206
+ "outline_color": "#f8ae0aff"
207
+ },
208
+ "metadata": {
209
+ "name": "Quốc lộ",
210
+ "group": "Đường giao thông",
211
+ "isDefault": true
212
+ }
213
+ }, {
214
+ "id": "roads_trunk_label",
215
+ "type": "label",
216
+ "source": "map4d",
217
+ "source_layer": "roads",
218
+ "filter": {
219
+ "kind": ["major_road"],
220
+ "kind_detail": ["trunk", "trunk_link"]
221
+ },
222
+ "draw": {
223
+ "text_size": 12,
224
+ "text_color": "#4e5256ff",
225
+ "text_halo_color": "#FFF"
226
+ },
227
+ "metadata": {
228
+ "key": "trunk",
229
+ "group": "Tên đường giao thông",
230
+ "isDefault": true
231
+ }
232
+ }, {
233
+ "id": "roads_minor_road_line",
234
+ "type": "line",
235
+ "source": "map4d",
236
+ "source_layer": "roads",
237
+ "filter": {
238
+ "kind": ["minor_road", "path"]
239
+ },
240
+ "draw": {
241
+ "width": [[16, 2], [18, 5], [19, 10]],
242
+ "color": "#FFF",
243
+ "outline_width": [[16, 1]],
244
+ "outline_color": "#dfe0e4ff"
245
+ },
246
+ "metadata": {
247
+ "name": "Đường phụ",
248
+ "group": "Đường giao thông",
249
+ "isDefault": true
250
+ }
251
+ }, {
252
+ "id": "roads_minor_road_label",
253
+ "type": "label",
254
+ "source": "map4d",
255
+ "source_layer": "roads",
256
+ "filter": {
257
+ "kind": ["minor_road", "path"]
258
+ },
259
+ "draw": {
260
+ "text_size": [[8, 10], [17, 12]],
261
+ "text_color": "#70757aff",
262
+ "text_halo_color": "#FFF"
263
+ },
264
+ "metadata": {
265
+ "key": "minor_road",
266
+ "group": "Tên đường giao thông",
267
+ "isDefault": true
268
+ }
269
+ }, {
270
+ "id": "roads_unclassified_line",
271
+ "type": "line",
272
+ "source": "map4d",
273
+ "source_layer": "roads",
274
+ "filter": {
275
+ "kind": ["minor_road", "path"],
276
+ "kind_detail": ["unclassified"]
277
+ },
278
+ "draw": {
279
+ "width": [[14, 1], [15, 2], [16, 4], [17, 7], [18, 10], [19, 20]],
280
+ "color": [[14, "#e8e8e8ff"], [15, "#ffffffff"]],
281
+ "outline_width": [[15, 1]],
282
+ "outline_color": [[7, "#dfe0e4ff"], [15, "#dfe0e4ff"]]
283
+ },
284
+ "metadata": {
285
+ "name": "Đường nhỏ",
286
+ "group": "Đường giao thông",
287
+ "isDefault": true
288
+ }
289
+ }, {
290
+ "id": "roads_unclassified_label",
291
+ "type": "label",
292
+ "source": "map4d",
293
+ "source_layer": "roads",
294
+ "filter": {
295
+ "kind": ["minor_road", "path"],
296
+ "kind_detail": ["unclassified"]
297
+ },
298
+ "draw": {
299
+ "text_size": [[8, 10], [17, 12]],
300
+ "text_color": "#4e5256ff",
301
+ "text_halo_color": "#FFF"
302
+ },
303
+ "metadata": {
304
+ "key": "unclassified",
305
+ "group": "Tên đường giao thông",
306
+ "isDefault": true
307
+ }
308
+ }, {
309
+ "id": "roads_residential_line",
310
+ "type": "line",
311
+ "source": "map4d",
312
+ "source_layer": "roads",
313
+ "filter": {
314
+ "kind": ["minor_road", "path"],
315
+ "kind_detail": ["residential"]
316
+ },
317
+ "draw": {
318
+ "width": [[14, 1], [15, 2], [16, 4], [17, 7], [18, 10], [19, 20]],
319
+ "color": [[14, "#e8e8e8ff"], [15, "#ffffffff"]],
320
+ "outline_width": [[15, 1]],
321
+ "outline_color": [[7, "#dfe0e4ff"], [15, "#dfe0e4ff"]]
322
+ },
323
+ "metadata": {
324
+ "name": "Đường trong khu dân cư",
325
+ "group": "Đường giao thông",
326
+ "isDefault": true
327
+ }
328
+ }, {
329
+ "id": "roads_residential_label",
330
+ "type": "label",
331
+ "source": "map4d",
332
+ "source_layer": "roads",
333
+ "filter": {
334
+ "kind": ["minor_road", "path"],
335
+ "kind_detail": ["residential"]
336
+ },
337
+ "draw": {
338
+ "text_size": [[8, 10], [17, 12]],
339
+ "text_color": "#4e5256ff",
340
+ "text_halo_color": "#FFF"
341
+ },
342
+ "metadata": {
343
+ "key": "residential",
344
+ "group": "Tên đường giao thông",
345
+ "isDefault": true
346
+ }
347
+ }, {
348
+ "id": "roads_footway_line",
349
+ "type": "line",
350
+ "source": "map4d",
351
+ "source_layer": "roads",
352
+ "filter": {
353
+ "kind": ["minor_road", "path"],
354
+ "kind_detail": ["footway", "pedestrian"]
355
+ },
356
+ "draw": {
357
+ "width": [[16, 2]],
358
+ "color": "#5bb974ff",
359
+ "outline_width": [[16, 1]],
360
+ "outline_color": "#f8f9faff"
361
+ },
362
+ "metadata": {
363
+ "name": "Đường đi dạo, đi bộ",
364
+ "group": "Đường giao thông",
365
+ "isDefault": true
366
+ }
367
+ }, {
368
+ "id": "roads_footway_label",
369
+ "type": "label",
370
+ "source": "map4d",
371
+ "source_layer": "roads",
372
+ "filter": {
373
+ "kind": ["minor_road", "path"],
374
+ "kind_detail": ["footway", "pedestrian"]
375
+ },
376
+ "draw": {
377
+ "text_size": [[8, 10], [17, 12]],
378
+ "text_color": "#4e5256ff",
379
+ "text_halo_color": "#FFF"
380
+ },
381
+ "metadata": {
382
+ "key": "footway",
383
+ "group": "Tên đường giao thông",
384
+ "isDefault": true
385
+ }
386
+ }, {
387
+ "id": "roads_construction_line",
388
+ "type": "line",
389
+ "source": "map4d",
390
+ "source_layer": "roads",
391
+ "filter": {
392
+ "kind": ["construction"]
393
+ },
394
+ "draw": {
395
+ "width": [[14, 1], [15, 2]],
396
+ "color": "#DDDFE3",
397
+ "outline_width": [[14, 1]],
398
+ "outline_color": [[7, "#dfe0e4ff"], [15, "#dfe0e4ff"]]
399
+ },
400
+ "metadata": {
401
+ "name": "Đường đang xây dựng",
402
+ "group": "Đường giao thông",
403
+ "isDefault": true
404
+ }
405
+ }, {
406
+ "id": "roads_construction_label",
407
+ "type": "label",
408
+ "source": "map4d",
409
+ "source_layer": "roads",
410
+ "filter": {
411
+ "kind": ["construction"]
412
+ },
413
+ "draw": {
414
+ "text_size": [[8, 10], [17, 12]],
415
+ "text_color": "#4e5256ff",
416
+ "text_halo_color": "#FFF"
417
+ },
418
+ "metadata": {
419
+ "key": "construction",
420
+ "group": "Tên đường giao thông",
421
+ "isDefault": true
422
+ }
423
+ }, {
424
+ "id": "roads_rail_line",
425
+ "type": "line",
426
+ "source": "map4d",
427
+ "source_layer": "roads",
428
+ "filter": {
429
+ "kind": ["rail"]
430
+ },
431
+ "draw": {
432
+ "width": [[10, 2]],
433
+ "color": [[10, "#b9c0c5ff"]],
434
+ "outline_width": [[13, 1]],
435
+ "outline_color": "#e4a421ff",
436
+ "pattern": "dashdash"
437
+ },
438
+ "metadata": {
439
+ "name": "Đường sắt",
440
+ "group": "Đường giao thông",
441
+ "isDefault": true
442
+ }
443
+ }, {
444
+ "id": "roads_rail_label",
445
+ "type": "label",
446
+ "source": "map4d",
447
+ "source_layer": "roads",
448
+ "filter": {
449
+ "kind": ["rail"]
450
+ },
451
+ "draw": {
452
+ "text_size": [[8, 10], [17, 12]],
453
+ "text_color": "#4e5256ff",
454
+ "text_halo_color": "#FFF"
455
+ },
456
+ "metadata": {
457
+ "key": "rail",
458
+ "group": "Tên đường giao thông",
459
+ "isDefault": true
460
+ }
461
+ }, {
462
+ "id": "roads_aeroway_line",
463
+ "type": "line",
464
+ "source": "map4d",
465
+ "source_layer": "roads",
466
+ "filter": {
467
+ "kind": ["aeroway"]
468
+ },
469
+ "draw": {
470
+ "width": [[13, 2], [15, 6]],
471
+ "color": "#f8f9faff",
472
+ "outline_width": [[10, 1]],
473
+ "outline_color": "#dfe0e4ff"
474
+ },
475
+ "metadata": {
476
+ "name": "Đường băng",
477
+ "group": "Đường giao thông",
478
+ "isDefault": true
479
+ }
480
+ }, {
481
+ "id": "roads_aeroway_label",
482
+ "type": "label",
483
+ "source": "map4d",
484
+ "source_layer": "roads",
485
+ "filter": {
486
+ "kind": ["aeroway"]
487
+ },
488
+ "draw": {
489
+ "text_size": [[8, 10], [17, 12]],
490
+ "text_color": "#4e5256ff",
491
+ "text_halo_color": "#FFF"
492
+ },
493
+ "metadata": {
494
+ "key": "aeroway",
495
+ "group": "Tên đường giao thông",
496
+ "isDefault": true
497
+ }
498
+ }, {
499
+ "id": "roads_ferry_line",
500
+ "type": "line",
501
+ "source": "map4d",
502
+ "source_layer": "roads",
503
+ "filter": {
504
+ "kind": ["ferry"]
505
+ },
506
+ "draw": {
507
+ "width": [[5, 1]],
508
+ "color": "#206cb7ff",
509
+ "outline_width": 1,
510
+ "outline_color": [[7, "#dfe0e4ff"], [15, "#dfe0e4ff"]],
511
+ "pattern": "dashdash"
512
+ },
513
+ "metadata": {
514
+ "name": "Đường phà",
515
+ "group": "Đường giao thông",
516
+ "isDefault": true
517
+ }
518
+ }, {
519
+ "id": "roads_ferry_label",
520
+ "type": "label",
521
+ "source": "map4d",
522
+ "source_layer": "roads",
523
+ "filter": {
524
+ "kind": ["ferry"]
525
+ },
526
+ "draw": {
527
+ "text_size": 12,
528
+ "text_color": "#185abcff",
529
+ "text_halo_color": "#FFF"
530
+ },
531
+ "metadata": {
532
+ "key": "ferry",
533
+ "group": "Tên đường giao thông",
534
+ "isDefault": true
535
+ }
536
+ }, {
537
+ "id": "roads_roads_line",
538
+ "type": "line",
539
+ "source": "map4d",
540
+ "source_layer": "roads",
541
+ "draw": {
542
+ "width": [[10, 1]],
543
+ "color": "#FFF",
544
+ "outline_width": [[13, 1]],
545
+ "outline_color": [[7, "#dfe0e4ff"], [15, "#dfe0e4ff"]]
546
+ },
547
+ "metadata": {
548
+ "name": "Đường khác",
549
+ "group": "Đường giao thông",
550
+ "isDefault": true
551
+ }
552
+ }, {
553
+ "id": "roads_roads_label",
554
+ "type": "label",
555
+ "source": "map4d",
556
+ "source_layer": "roads",
557
+ "draw": {
558
+ "text_size": [[8, 10], [17, 12]],
559
+ "text_color": "#4e5256ff",
560
+ "text_halo_color": "#FFF"
561
+ },
562
+ "metadata": {
563
+ "key": "roads",
564
+ "group": "Tên đường giao thông",
565
+ "isDefault": true
566
+ }
567
+ }, {
568
+ "id": "boundaries_boundaries_line",
569
+ "type": "line",
570
+ "source": "map4d",
571
+ "source_layer": "boundaries",
572
+ "draw": {
573
+ "width": [[2, 0]]
574
+ },
575
+ "metadata": {
576
+ "key": "boundaries",
577
+ "group": "Đường ranh giới",
578
+ "isDefault": true
579
+ }
580
+ }, {
581
+ "id": "boundaries_boundaries_label",
582
+ "type": "label",
583
+ "source": "map4d",
584
+ "source_layer": "boundaries",
585
+ "draw": {
586
+ "text_size": 10,
587
+ "text_color": "#798083",
588
+ "text_halo_color": "#FFF"
589
+ },
590
+ "metadata": {
591
+ "key": "boundaries",
592
+ "group": "Tên ranh giới",
593
+ "isDefault": true
594
+ }
595
+ }, {
596
+ "id": "boundaries_country_line",
597
+ "type": "line",
598
+ "source": "map4d",
599
+ "source_layer": "boundaries",
600
+ "filter": {
601
+ "kind_detail": ["2"]
602
+ },
603
+ "draw": {
604
+ "width": [[2, 1]],
605
+ "color": "#7f7f7ffc"
606
+ },
607
+ "metadata": {
608
+ "key": "country",
609
+ "group": "Đường ranh giới",
610
+ "isDefault": true
611
+ }
612
+ }, {
613
+ "id": "boundaries_country_label",
614
+ "type": "label",
615
+ "source": "map4d",
616
+ "source_layer": "boundaries",
617
+ "filter": {
618
+ "kind_detail": ["2"]
619
+ },
620
+ "draw": {
621
+ "text_size": 10,
622
+ "text_color": "#000000ff",
623
+ "text_halo_color": "#ffffffff"
624
+ },
625
+ "metadata": {
626
+ "key": "country",
627
+ "group": "Tên ranh giới",
628
+ "isDefault": true
629
+ }
630
+ }, {
631
+ "id": "boundaries_province_line",
632
+ "type": "line",
633
+ "source": "map4d",
634
+ "source_layer": "boundaries",
635
+ "filter": {
636
+ "kind": ["province", "province_sf"]
637
+ },
638
+ "draw": {
639
+ "width": [[5, 1], [11, 0]],
640
+ "pattern": "dashdash",
641
+ "color": [[7, "#BDBDBD"], [8, "#8a8a8aff"]]
642
+ },
643
+ "metadata": {
644
+ "key": "province",
645
+ "group": "Đường ranh giới",
646
+ "isDefault": true
647
+ }
648
+ }, {
649
+ "id": "boundaries_province_label",
650
+ "type": "label",
651
+ "source": "map4d",
652
+ "source_layer": "boundaries",
653
+ "filter": {
654
+ "kind": ["province", "province_sf"]
655
+ },
656
+ "draw": {
657
+ "text_size": 10,
658
+ "text_color": "#798083",
659
+ "text_halo_color": "#FFF"
660
+ },
661
+ "metadata": {
662
+ "key": "province",
663
+ "group": "Tên ranh giới",
664
+ "isDefault": true
665
+ }
666
+ }, {
667
+ "id": "boundaries_district_line",
668
+ "type": "line",
669
+ "source": "map4d",
670
+ "source_layer": "boundaries",
671
+ "filter": {
672
+ "kind": ["district"]
673
+ },
674
+ "draw": {
675
+ "width": [[11, 1]],
676
+ "pattern": "dashdash",
677
+ "color": "#8a8a8aff"
678
+ },
679
+ "metadata": {
680
+ "key": "district",
681
+ "group": "Đường ranh giới",
682
+ "isDefault": true
683
+ }
684
+ }, {
685
+ "id": "boundaries_district_label",
686
+ "type": "label",
687
+ "source": "map4d",
688
+ "source_layer": "boundaries",
689
+ "filter": {
690
+ "kind": ["district"]
691
+ },
692
+ "draw": {
693
+ "text_size": 10,
694
+ "text_color": "#4e5256ff",
695
+ "text_halo_color": "#FFF"
696
+ },
697
+ "metadata": {
698
+ "key": "district",
699
+ "group": "Tên ranh giới",
700
+ "isDefault": true
701
+ }
702
+ }, {
703
+ "id": "boundaries_ward_line",
704
+ "type": "line",
705
+ "source": "map4d",
706
+ "source_layer": "boundaries",
707
+ "filter": {
708
+ "kind": ["ward"]
709
+ },
710
+ "draw": {
711
+ "width": [[14, 0]],
712
+ "pattern": "dashdash",
713
+ "color": "#8a8a8aff"
714
+ },
715
+ "metadata": {
716
+ "key": "ward",
717
+ "group": "Đường ranh giới",
718
+ "isDefault": true
719
+ }
720
+ }, {
721
+ "id": "boundaries_ward_label",
722
+ "type": "label",
723
+ "source": "map4d",
724
+ "source_layer": "boundaries",
725
+ "filter": {
726
+ "kind": ["ward"]
727
+ },
728
+ "draw": {
729
+ "text_size": 10,
730
+ "text_color": "#4e5256ff",
731
+ "text_halo_color": "#FFF"
732
+ },
733
+ "metadata": {
734
+ "key": "ward",
735
+ "group": "Tên ranh giới",
736
+ "isDefault": true
737
+ }
738
+ }, {
739
+ "id": "places_places_label",
740
+ "type": "label",
741
+ "source": "map4d",
742
+ "source_layer": "places",
743
+ "draw": {
744
+ "text_size": 0,
745
+ "text_color": "#505050",
746
+ "text_halo_color": "#FFF"
747
+ },
748
+ "metadata": {
749
+ "key": "places",
750
+ "group": "Tên địa giới hành chính",
751
+ "isDefault": true
752
+ }
753
+ }, {
754
+ "id": "places_country_label",
755
+ "type": "label",
756
+ "source": "map4d",
757
+ "source_layer": "places",
758
+ "filter": {
759
+ "kind": ["country", "country_sf"]
760
+ },
761
+ "draw": {
762
+ "text_size": [[2, 9], [5, 12], [6, 18], [9, 0]],
763
+ "text_color": "#232323ff",
764
+ "text_halo_color": "#ffffffff"
765
+ },
766
+ "metadata": {
767
+ "key": "country",
768
+ "group": "Tên địa giới hành chính",
769
+ "isDefault": true
770
+ }
771
+ }, {
772
+ "id": "places_archipelago_label",
773
+ "type": "label",
774
+ "source": "map4d",
775
+ "source_layer": "places",
776
+ "filter": {
777
+ "kind": ["archipelago"]
778
+ },
779
+ "draw": {
780
+ "text_size": [[5, 9], [6, 12], [8, 14]],
781
+ "text_color": "#181818ff",
782
+ "text_halo_color": "#ffffffff"
783
+ },
784
+ "metadata": {
785
+ "key": "archipelago",
786
+ "group": "Tên địa giới hành chính",
787
+ "isDefault": true
788
+ }
789
+ }, {
790
+ "id": "places_sea_label",
791
+ "type": "label",
792
+ "source": "map4d",
793
+ "source_layer": "places",
794
+ "filter": {
795
+ "kind": ["sea"]
796
+ },
797
+ "draw": {
798
+ "text_size": [[4, 7], [5, 9], [6, 12], [7, 12], [8, 12], [10, 12]],
799
+ "text_color": "#232323ff",
800
+ "text_halo_color": "#ffffffff"
801
+ },
802
+ "metadata": {
803
+ "key": "sea",
804
+ "group": "Tên địa giới hành chính",
805
+ "isDefault": true
806
+ }
807
+ }, {
808
+ "id": "places_island_label",
809
+ "type": "label",
810
+ "source": "map4d",
811
+ "source_layer": "places",
812
+ "filter": {
813
+ "kind": ["island"]
814
+ },
815
+ "draw": {
816
+ "text_size": [[6, 9]],
817
+ "text_color": "#232323ff",
818
+ "text_halo_color": "#FFF"
819
+ },
820
+ "metadata": {
821
+ "key": "island",
822
+ "group": "Tên địa giới hành chính",
823
+ "isDefault": true
824
+ }
825
+ }, {
826
+ "id": "places_islet_label",
827
+ "type": "label",
828
+ "source": "map4d",
829
+ "source_layer": "places",
830
+ "filter": {
831
+ "kind": ["islet"]
832
+ },
833
+ "draw": {
834
+ "text_size": [[12, 10]],
835
+ "text_color": "#121212ff",
836
+ "text_halo_color": "#FFF"
837
+ },
838
+ "metadata": {
839
+ "key": "islet",
840
+ "group": "Tên địa giới hành chính",
841
+ "isDefault": true
842
+ }
843
+ }, {
844
+ "id": "places_province_label",
845
+ "type": "label",
846
+ "source": "map4d",
847
+ "source_layer": "places",
848
+ "filter": {
849
+ "kind": ["province"]
850
+ },
851
+ "draw": {
852
+ "text_size": [[7, 9], [8, 16], [10, 20], [14, 0]],
853
+ "text_color": "#565D67",
854
+ "text_halo_color": "#FFF"
855
+ },
856
+ "metadata": {
857
+ "key": "province",
858
+ "group": "Tên địa giới hành chính",
859
+ "isDefault": true
860
+ }
861
+ }, {
862
+ "id": "places_city_label",
863
+ "type": "label",
864
+ "source": "map4d",
865
+ "source_layer": "places",
866
+ "filter": {
867
+ "kind": ["province"],
868
+ "kind_detail": ["city"]
869
+ },
870
+ "draw": {
871
+ "text_size": [[5, 12], [8, 18], [10, 20], [14, 0]],
872
+ "text_color": "#1d1f20ff",
873
+ "text_halo_color": "#ffffffff"
874
+ },
875
+ "metadata": {
876
+ "key": "city",
877
+ "group": "Tên địa giới hành chính",
878
+ "isDefault": true
879
+ }
880
+ }, {
881
+ "id": "places_district_label",
882
+ "type": "label",
883
+ "source": "map4d",
884
+ "source_layer": "places",
885
+ "filter": {
886
+ "kind": ["district"]
887
+ },
888
+ "draw": {
889
+ "text_size": [[11, 12], [13, 13], [14, 0]],
890
+ "text_color": "#4e5256ff",
891
+ "text_halo_color": "#FFF"
892
+ },
893
+ "metadata": {
894
+ "key": "district",
895
+ "group": "Tên địa giới hành chính",
896
+ "isDefault": true
897
+ }
898
+ }, {
899
+ "id": "places_ward_label",
900
+ "type": "label",
901
+ "source": "map4d",
902
+ "source_layer": "places",
903
+ "filter": {
904
+ "kind": ["ward"]
905
+ },
906
+ "draw": {
907
+ "text_size": [[14, 10], [15, 11], [17, 0]],
908
+ "text_color": "#414448ff",
909
+ "text_halo_color": "#FFF"
910
+ },
911
+ "metadata": {
912
+ "key": "ward",
913
+ "group": "Tên địa giới hành chính",
914
+ "isDefault": true
915
+ }
916
+ }, {
917
+ "id": "places_hamlet_label",
918
+ "type": "label",
919
+ "source": "map4d",
920
+ "source_layer": "places",
921
+ "filter": {
922
+ "kind": "hamlet"
923
+ },
924
+ "draw": {
925
+ "text_size": [[15, 9]],
926
+ "text_color": "#505050",
927
+ "text_halo_color": "#FFF"
928
+ },
929
+ "metadata": {
930
+ "key": "hamlet",
931
+ "group": "Tên địa giới hành chính",
932
+ "isDefault": true
933
+ }
934
+ }, {
935
+ "id": "pois_pois_symbol",
936
+ "type": "symbol",
937
+ "source": "map4d",
938
+ "source_layer": "pois",
939
+ "draw": {
940
+ "icon_image": "pois",
941
+ "icon_index": 1,
942
+ "icon_color": "#678899ff",
943
+ "text_size": 12,
944
+ "text_color": "#678899ff",
945
+ "text_halo_color": "#fdfdfd"
946
+ },
947
+ "metadata": {
948
+ "key": "pois",
949
+ "group": "Địa điểm",
950
+ "isDefault": true
951
+ }
952
+ }, {
953
+ "id": "pois_cafe_symbol",
954
+ "type": "symbol",
955
+ "source": "map4d",
956
+ "source_layer": "pois",
957
+ "filter": {
958
+ "kind": ["cafe", "milk_tea", "drink"]
959
+ },
960
+ "draw": {
961
+ "icon_image": "pois",
962
+ "icon_index": 19,
963
+ "icon_color": "#f19800ff",
964
+ "text_size": 12,
965
+ "text_color": "#f19800ff",
966
+ "text_halo_color": "#fdfdfd"
967
+ },
968
+ "metadata": {
969
+ "key": "cafe",
970
+ "group": "Địa điểm",
971
+ "isDefault": true
972
+ }
973
+ }, {
974
+ "id": "pois_store_symbol",
975
+ "type": "symbol",
976
+ "source": "map4d",
977
+ "source_layer": "pois",
978
+ "filter": {
979
+ "kind": ["car_dealer", "motorcycle_dealer", "bicycle_store", "car_rental", "motorcycle_rental", "cosmetic_store", "mommy_store", "clothing_store", "glasses_store", "shoe_store", "electronics_store", "cellphone_store", "computer_store", "store", "fruit_shop", "florist", "sports_store", "toy_store", "furniture_store", "home_goods_store", "jewelry_store", "book_store", "pet_store", "liquor_store", "gift_shop", "building_materials_store", "musical_instrument_store", "electrical_supply_store", "second_hand_store", "fuel_store"]
980
+ },
981
+ "draw": {
982
+ "icon_image": "pois",
983
+ "icon_index": 2,
984
+ "icon_color": "#5491f5ff",
985
+ "text_size": 12,
986
+ "text_color": "#5491f5ff",
987
+ "text_halo_color": "#fdfdfdff"
988
+ },
989
+ "metadata": {
990
+ "key": "store",
991
+ "group": "Địa điểm",
992
+ "isDefault": true
993
+ }
994
+ }, {
995
+ "id": "pois_market_symbol",
996
+ "type": "symbol",
997
+ "source": "map4d",
998
+ "source_layer": "pois",
999
+ "filter": {
1000
+ "kind": ["food_store", "convenience_store", "local_market", "supermarket", "grocery_store", "shopping_mall"]
1001
+ },
1002
+ "draw": {
1003
+ "icon_image": "pois",
1004
+ "icon_index": 3,
1005
+ "icon_color": "#5491f5ff",
1006
+ "text_size": 12,
1007
+ "text_color": "#5491f5ff",
1008
+ "text_halo_color": "#fdfdfd"
1009
+ },
1010
+ "metadata": {
1011
+ "key": "market",
1012
+ "group": "Địa điểm",
1013
+ "isDefault": true
1014
+ }
1015
+ }, {
1016
+ "id": "pois_atm_symbol",
1017
+ "type": "symbol",
1018
+ "source": "map4d",
1019
+ "source_layer": "pois",
1020
+ "filter": {
1021
+ "kind": ["atm"]
1022
+ },
1023
+ "draw": {
1024
+ "icon_image": "pois",
1025
+ "icon_index": 4,
1026
+ "icon_color": "#7985caff",
1027
+ "text_size": 12,
1028
+ "text_color": "#7985caff",
1029
+ "text_halo_color": "#fdfdfdff"
1030
+ },
1031
+ "metadata": {
1032
+ "key": "atm",
1033
+ "group": "Địa điểm",
1034
+ "isDefault": true
1035
+ }
1036
+ }, {
1037
+ "id": "pois_bank_symbol",
1038
+ "type": "symbol",
1039
+ "source": "map4d",
1040
+ "source_layer": "pois",
1041
+ "filter": {
1042
+ "kind": ["bank", "treasury"]
1043
+ },
1044
+ "draw": {
1045
+ "icon_image": "pois",
1046
+ "icon_index": 5,
1047
+ "icon_color": "#7985caff",
1048
+ "text_size": 12,
1049
+ "text_color": "#7985caff",
1050
+ "text_halo_color": "#fdfdfdff"
1051
+ },
1052
+ "metadata": {
1053
+ "key": "bank",
1054
+ "group": "Địa điểm",
1055
+ "isDefault": true
1056
+ }
1057
+ }, {
1058
+ "id": "pois_pharmacy_symbol",
1059
+ "type": "symbol",
1060
+ "source": "map4d",
1061
+ "source_layer": "pois",
1062
+ "filter": {
1063
+ "kind": ["pharmacy"]
1064
+ },
1065
+ "draw": {
1066
+ "icon_image": "pois",
1067
+ "icon_index": 6,
1068
+ "icon_color": "#ec685cff",
1069
+ "text_size": 12,
1070
+ "text_color": "#ec685cff",
1071
+ "text_halo_color": "#fdfdfdff"
1072
+ },
1073
+ "metadata": {
1074
+ "key": "pharmacy",
1075
+ "group": "Địa điểm",
1076
+ "isDefault": true
1077
+ }
1078
+ }, {
1079
+ "id": "pois_hospital_symbol",
1080
+ "type": "symbol",
1081
+ "source": "map4d",
1082
+ "source_layer": "pois",
1083
+ "filter": {
1084
+ "kind": ["health", "hospital", "doctor", "physiotherapist"]
1085
+ },
1086
+ "draw": {
1087
+ "icon_image": "pois",
1088
+ "icon_index": 7,
1089
+ "icon_color": "#ec685cff",
1090
+ "text_size": 12,
1091
+ "text_color": "#ec685cff",
1092
+ "text_halo_color": "#fdfdfdff"
1093
+ },
1094
+ "metadata": {
1095
+ "key": "hospital",
1096
+ "group": "Địa điểm",
1097
+ "isDefault": true
1098
+ }
1099
+ }, {
1100
+ "id": "pois_dentist_symbol",
1101
+ "type": "symbol",
1102
+ "source": "map4d",
1103
+ "source_layer": "pois",
1104
+ "filter": {
1105
+ "kind": ["dentist"]
1106
+ },
1107
+ "draw": {
1108
+ "icon_image": "pois",
1109
+ "icon_index": 8,
1110
+ "icon_color": "#ec685cff",
1111
+ "text_size": 12,
1112
+ "text_color": "#ec685cff",
1113
+ "text_halo_color": "#fdfdfd"
1114
+ },
1115
+ "metadata": {
1116
+ "key": "dentist",
1117
+ "group": "Địa điểm",
1118
+ "isDefault": true
1119
+ }
1120
+ }, {
1121
+ "id": "pois_bus_station_symbol",
1122
+ "type": "symbol",
1123
+ "source": "map4d",
1124
+ "source_layer": "pois",
1125
+ "filter": {
1126
+ "kind": ["bus_station", "transit_station"]
1127
+ },
1128
+ "draw": {
1129
+ "icon_image": "pois",
1130
+ "icon_index": 10,
1131
+ "icon_color": "#678899ff",
1132
+ "text_size": 12,
1133
+ "text_color": "#678899ff",
1134
+ "text_halo_color": "#fdfdfd"
1135
+ },
1136
+ "metadata": {
1137
+ "key": "bus_station",
1138
+ "group": "Địa điểm",
1139
+ "isDefault": true
1140
+ }
1141
+ }, {
1142
+ "id": "pois_airport_symbol",
1143
+ "type": "symbol",
1144
+ "source": "map4d",
1145
+ "source_layer": "pois",
1146
+ "filter": {
1147
+ "kind": ["airport"]
1148
+ },
1149
+ "draw": {
1150
+ "icon_image": "pois",
1151
+ "icon_index": 11,
1152
+ "icon_color": "#678899ff",
1153
+ "text_size": 12,
1154
+ "text_color": "#678899ff",
1155
+ "text_halo_color": "#fdfdfd"
1156
+ },
1157
+ "metadata": {
1158
+ "key": "airport",
1159
+ "group": "Địa điểm",
1160
+ "isDefault": true
1161
+ }
1162
+ }, {
1163
+ "id": "pois_train_station_symbol",
1164
+ "type": "symbol",
1165
+ "source": "map4d",
1166
+ "source_layer": "pois",
1167
+ "filter": {
1168
+ "kind": ["train_station", "subway_station"]
1169
+ },
1170
+ "draw": {
1171
+ "icon_image": "pois",
1172
+ "icon_index": 12,
1173
+ "icon_color": "#678899ff",
1174
+ "text_size": 12,
1175
+ "text_color": "#678899ff",
1176
+ "text_halo_color": "#fdfdfd"
1177
+ },
1178
+ "metadata": {
1179
+ "key": "train_station",
1180
+ "group": "Địa điểm",
1181
+ "isDefault": true
1182
+ }
1183
+ }, {
1184
+ "id": "pois_bus_stop_symbol",
1185
+ "type": "symbol",
1186
+ "source": "map4d",
1187
+ "source_layer": "pois",
1188
+ "filter": {
1189
+ "kind": ["bus_stop"]
1190
+ },
1191
+ "draw": {
1192
+ "icon_image": "pois",
1193
+ "icon_index": 54,
1194
+ "icon_color": "#2e7dfeff",
1195
+ "text_size": 12,
1196
+ "text_color": "#2e7dfeff",
1197
+ "text_halo_color": "#fdfdfd"
1198
+ },
1199
+ "metadata": {
1200
+ "key": "bus_stop",
1201
+ "group": "Địa điểm",
1202
+ "isDefault": true
1203
+ }
1204
+ }, {
1205
+ "id": "pois_charging_station_symbol",
1206
+ "type": "symbol",
1207
+ "source": "map4d",
1208
+ "source_layer": "pois",
1209
+ "filter": {
1210
+ "kind": ["charging_station"]
1211
+ },
1212
+ "draw": {
1213
+ "icon_image": "pois",
1214
+ "icon_index": 13,
1215
+ "icon_color": "#678899ff",
1216
+ "text_size": 12,
1217
+ "text_color": "#678899ff",
1218
+ "text_halo_color": "#fdfdfd"
1219
+ },
1220
+ "metadata": {
1221
+ "key": "charging_station",
1222
+ "group": "Địa điểm",
1223
+ "isDefault": true
1224
+ }
1225
+ }, {
1226
+ "id": "pois_gas_station_symbol",
1227
+ "type": "symbol",
1228
+ "source": "map4d",
1229
+ "source_layer": "pois",
1230
+ "filter": {
1231
+ "kind": ["gas_station"]
1232
+ },
1233
+ "draw": {
1234
+ "icon_image": "pois",
1235
+ "icon_index": 14,
1236
+ "icon_color": "#678899ff",
1237
+ "text_size": 12,
1238
+ "text_color": "#678899ff",
1239
+ "text_halo_color": "#fdfdfd"
1240
+ },
1241
+ "metadata": {
1242
+ "key": "gas_station",
1243
+ "group": "Địa điểm",
1244
+ "isDefault": true
1245
+ }
1246
+ }, {
1247
+ "id": "pois_parking_symbol",
1248
+ "type": "symbol",
1249
+ "source": "map4d",
1250
+ "source_layer": "pois",
1251
+ "filter": {
1252
+ "kind": ["parking"]
1253
+ },
1254
+ "draw": {
1255
+ "icon_image": "pois",
1256
+ "icon_index": 15,
1257
+ "icon_color": "#678899ff",
1258
+ "text_size": 12,
1259
+ "text_color": "#678899ff",
1260
+ "text_halo_color": "#fdfdfd"
1261
+ },
1262
+ "metadata": {
1263
+ "key": "parking",
1264
+ "group": "Địa điểm",
1265
+ "isDefault": true
1266
+ }
1267
+ }, {
1268
+ "id": "pois_school_symbol",
1269
+ "type": "symbol",
1270
+ "source": "map4d",
1271
+ "source_layer": "pois",
1272
+ "filter": {
1273
+ "kind": ["preschool", "primary_school", "secondary_school", "high_school", "university", "college", "driving_school", "language_center"]
1274
+ },
1275
+ "draw": {
1276
+ "icon_image": "pois",
1277
+ "icon_index": 16,
1278
+ "icon_color": "#78909cff",
1279
+ "text_size": 12,
1280
+ "text_color": "#78909cff",
1281
+ "text_halo_color": "#fdfdfd"
1282
+ },
1283
+ "metadata": {
1284
+ "key": "school",
1285
+ "group": "Địa điểm",
1286
+ "isDefault": true
1287
+ }
1288
+ }, {
1289
+ "id": "pois_hotel_symbol",
1290
+ "type": "symbol",
1291
+ "source": "map4d",
1292
+ "source_layer": "pois",
1293
+ "filter": {
1294
+ "kind": ["lodging", "hotel", "apartment", "guest_house"]
1295
+ },
1296
+ "draw": {
1297
+ "icon_image": "pois",
1298
+ "icon_index": 17,
1299
+ "icon_color": "#f06292ff",
1300
+ "text_size": 12,
1301
+ "text_color": "#f06292ff",
1302
+ "text_halo_color": "#fdfdfd"
1303
+ },
1304
+ "metadata": {
1305
+ "key": "hotel",
1306
+ "group": "Địa điểm",
1307
+ "isDefault": true
1308
+ }
1309
+ }, {
1310
+ "id": "pois_pagoda_symbol",
1311
+ "type": "symbol",
1312
+ "source": "map4d",
1313
+ "source_layer": "pois",
1314
+ "filter": {
1315
+ "kind": ["pagoda"]
1316
+ },
1317
+ "draw": {
1318
+ "icon_image": "pois",
1319
+ "icon_index": 22,
1320
+ "icon_color": "#678899ff",
1321
+ "text_size": 12,
1322
+ "text_color": "#678899ff",
1323
+ "text_halo_color": "#fdfdfd"
1324
+ },
1325
+ "metadata": {
1326
+ "key": "pagoda",
1327
+ "group": "Địa điểm",
1328
+ "isDefault": true
1329
+ }
1330
+ }, {
1331
+ "id": "pois_temple_symbol",
1332
+ "type": "symbol",
1333
+ "source": "map4d",
1334
+ "source_layer": "pois",
1335
+ "filter": {
1336
+ "kind": ["temple", "worship"]
1337
+ },
1338
+ "draw": {
1339
+ "icon_image": "pois",
1340
+ "icon_index": 23,
1341
+ "icon_color": "#678899ff",
1342
+ "text_size": 12,
1343
+ "text_color": "#678899ff",
1344
+ "text_halo_color": "#fdfdfd"
1345
+ },
1346
+ "metadata": {
1347
+ "key": "temple",
1348
+ "group": "Địa điểm",
1349
+ "isDefault": true
1350
+ }
1351
+ }, {
1352
+ "id": "pois_church_symbol",
1353
+ "type": "symbol",
1354
+ "source": "map4d",
1355
+ "source_layer": "pois",
1356
+ "filter": {
1357
+ "kind": ["church"]
1358
+ },
1359
+ "draw": {
1360
+ "icon_image": "pois",
1361
+ "icon_index": 24,
1362
+ "icon_color": "#678899ff",
1363
+ "text_size": 12,
1364
+ "text_color": "#678899ff",
1365
+ "text_halo_color": "#fdfdfd"
1366
+ },
1367
+ "metadata": {
1368
+ "key": "church",
1369
+ "group": "Địa điểm",
1370
+ "isDefault": true
1371
+ }
1372
+ }, {
1373
+ "id": "pois_storage_symbol",
1374
+ "type": "symbol",
1375
+ "source": "map4d",
1376
+ "source_layer": "pois",
1377
+ "filter": {
1378
+ "kind": ["storage"]
1379
+ },
1380
+ "draw": {
1381
+ "icon_image": "pois",
1382
+ "icon_index": 25,
1383
+ "icon_color": "#00bcfcff",
1384
+ "text_size": 12,
1385
+ "text_color": "#00bcfcff",
1386
+ "text_halo_color": "#fdfdfd"
1387
+ },
1388
+ "metadata": {
1389
+ "key": "storage",
1390
+ "group": "Địa điểm",
1391
+ "isDefault": true
1392
+ }
1393
+ }, {
1394
+ "id": "pois_industrial_zone_symbol",
1395
+ "type": "symbol",
1396
+ "source": "map4d",
1397
+ "source_layer": "pois",
1398
+ "filter": {
1399
+ "kind": ["industrial_zone"]
1400
+ },
1401
+ "draw": {
1402
+ "icon_image": "pois",
1403
+ "icon_index": 26,
1404
+ "icon_color": "#678899ff",
1405
+ "text_size": 12,
1406
+ "text_color": "#678899ff",
1407
+ "text_halo_color": "#fdfdfd"
1408
+ },
1409
+ "metadata": {
1410
+ "key": "industrial_zone",
1411
+ "group": "Địa điểm",
1412
+ "isDefault": true
1413
+ }
1414
+ }, {
1415
+ "id": "pois_campground_symbol",
1416
+ "type": "symbol",
1417
+ "source": "map4d",
1418
+ "source_layer": "pois",
1419
+ "filter": {
1420
+ "kind": ["campground"]
1421
+ },
1422
+ "draw": {
1423
+ "icon_image": "pois",
1424
+ "icon_index": 27,
1425
+ "icon_color": "#12b5cbff",
1426
+ "text_size": 12,
1427
+ "text_color": "#12b5cbff",
1428
+ "text_halo_color": "#fdfdfd"
1429
+ },
1430
+ "metadata": {
1431
+ "key": "campground",
1432
+ "group": "Địa điểm",
1433
+ "isDefault": true
1434
+ }
1435
+ }, {
1436
+ "id": "pois_museum_symbol",
1437
+ "type": "symbol",
1438
+ "source": "map4d",
1439
+ "source_layer": "pois",
1440
+ "filter": {
1441
+ "kind": ["museum", "art_gallery"]
1442
+ },
1443
+ "draw": {
1444
+ "icon_image": "pois",
1445
+ "icon_index": 28,
1446
+ "icon_color": "#678899ff",
1447
+ "text_size": 12,
1448
+ "text_color": "#678899ff",
1449
+ "text_halo_color": "#fdfdfd"
1450
+ },
1451
+ "metadata": {
1452
+ "key": "museum",
1453
+ "group": "Địa điểm",
1454
+ "isDefault": true
1455
+ }
1456
+ }, {
1457
+ "id": "pois_public_beach_symbol",
1458
+ "type": "symbol",
1459
+ "source": "map4d",
1460
+ "source_layer": "pois",
1461
+ "filter": {
1462
+ "kind": ["public_beach"]
1463
+ },
1464
+ "draw": {
1465
+ "icon_image": "pois",
1466
+ "icon_index": 52,
1467
+ "icon_color": "#12b5cbff",
1468
+ "text_size": 12,
1469
+ "text_color": "#12b5cbff",
1470
+ "text_halo_color": "#fdfdfd"
1471
+ },
1472
+ "metadata": {
1473
+ "key": "public_beach",
1474
+ "group": "Địa điểm",
1475
+ "isDefault": true
1476
+ }
1477
+ }, {
1478
+ "id": "pois_gym_symbol",
1479
+ "type": "symbol",
1480
+ "source": "map4d",
1481
+ "source_layer": "pois",
1482
+ "filter": {
1483
+ "kind": ["gym"]
1484
+ },
1485
+ "draw": {
1486
+ "icon_image": "pois",
1487
+ "icon_index": 29,
1488
+ "icon_color": "#8d70d5ff",
1489
+ "text_size": 12,
1490
+ "text_color": "#8d70d5ff",
1491
+ "text_halo_color": "#fdfdfd"
1492
+ },
1493
+ "metadata": {
1494
+ "key": "gym",
1495
+ "group": "Địa điểm",
1496
+ "isDefault": true
1497
+ }
1498
+ }, {
1499
+ "id": "pois_sports_center_symbol",
1500
+ "type": "symbol",
1501
+ "source": "map4d",
1502
+ "source_layer": "pois",
1503
+ "filter": {
1504
+ "kind": ["sports_center"]
1505
+ },
1506
+ "draw": {
1507
+ "icon_image": "pois",
1508
+ "icon_index": 30,
1509
+ "icon_color": "#8d70d5ff",
1510
+ "text_size": 12,
1511
+ "text_color": "#8d70d5ff",
1512
+ "text_halo_color": "#fdfdfd"
1513
+ },
1514
+ "metadata": {
1515
+ "key": "sports_center",
1516
+ "group": "Địa điểm",
1517
+ "isDefault": true
1518
+ }
1519
+ }, {
1520
+ "id": "pois_stadium_symbol",
1521
+ "type": "symbol",
1522
+ "source": "map4d",
1523
+ "source_layer": "pois",
1524
+ "filter": {
1525
+ "kind": ["stadium"]
1526
+ },
1527
+ "draw": {
1528
+ "icon_image": "pois",
1529
+ "icon_index": 31,
1530
+ "icon_color": "#8d70d5ff",
1531
+ "text_size": 12,
1532
+ "text_color": "#8d70d5ff",
1533
+ "text_halo_color": "#fdfdfd"
1534
+ },
1535
+ "metadata": {
1536
+ "key": "stadium",
1537
+ "group": "Địa điểm",
1538
+ "isDefault": true
1539
+ }
1540
+ }, {
1541
+ "id": "pois_park_symbol",
1542
+ "type": "symbol",
1543
+ "source": "map4d",
1544
+ "source_layer": "pois",
1545
+ "filter": {
1546
+ "kind": ["park", "zoo"]
1547
+ },
1548
+ "draw": {
1549
+ "icon_image": "pois",
1550
+ "icon_index": 32,
1551
+ "icon_color": "#34a853ff",
1552
+ "text_size": 12,
1553
+ "text_color": "#34a853ff",
1554
+ "text_halo_color": "#fdfdfd"
1555
+ },
1556
+ "metadata": {
1557
+ "key": "park",
1558
+ "group": "Địa điểm",
1559
+ "isDefault": true
1560
+ }
1561
+ }, {
1562
+ "id": "pois_golf_symbol",
1563
+ "type": "symbol",
1564
+ "source": "map4d",
1565
+ "source_layer": "pois",
1566
+ "filter": {
1567
+ "kind": ["golf"]
1568
+ },
1569
+ "draw": {
1570
+ "icon_image": "pois",
1571
+ "icon_index": 33,
1572
+ "icon_color": "#8d70d5ff",
1573
+ "text_size": 12,
1574
+ "text_color": "#8d70d5ff",
1575
+ "text_halo_color": "#fdfdfd"
1576
+ },
1577
+ "metadata": {
1578
+ "key": "golf",
1579
+ "group": "Địa điểm",
1580
+ "isDefault": true
1581
+ }
1582
+ }, {
1583
+ "id": "pois_amusement_park_symbol",
1584
+ "type": "symbol",
1585
+ "source": "map4d",
1586
+ "source_layer": "pois",
1587
+ "filter": {
1588
+ "kind": ["amusement_park"]
1589
+ },
1590
+ "draw": {
1591
+ "icon_image": "pois",
1592
+ "icon_index": 34,
1593
+ "icon_color": "#12b5cbff",
1594
+ "text_size": 12,
1595
+ "text_color": "#12b5cbff",
1596
+ "text_halo_color": "#fdfdfd"
1597
+ },
1598
+ "metadata": {
1599
+ "key": "amusement_park",
1600
+ "group": "Địa điểm",
1601
+ "isDefault": true
1602
+ }
1603
+ }, {
1604
+ "id": "pois_cinema_symbol",
1605
+ "type": "symbol",
1606
+ "source": "map4d",
1607
+ "source_layer": "pois",
1608
+ "filter": {
1609
+ "kind": ["cinema"]
1610
+ },
1611
+ "draw": {
1612
+ "icon_image": "pois",
1613
+ "icon_index": 34,
1614
+ "icon_color": "#12b5cbff",
1615
+ "text_size": 12,
1616
+ "text_color": "#12b5cbff",
1617
+ "text_halo_color": "#fdfdfd"
1618
+ },
1619
+ "metadata": {
1620
+ "key": "cinema",
1621
+ "group": "Địa điểm",
1622
+ "isDefault": true
1623
+ }
1624
+ }, {
1625
+ "id": "pois_library_symbol",
1626
+ "type": "symbol",
1627
+ "source": "map4d",
1628
+ "source_layer": "pois",
1629
+ "filter": {
1630
+ "kind": ["library"]
1631
+ },
1632
+ "draw": {
1633
+ "icon_image": "pois",
1634
+ "icon_index": 36,
1635
+ "icon_color": "#678899ff",
1636
+ "text_size": 12,
1637
+ "text_color": "#678899ff",
1638
+ "text_halo_color": "#fdfdfd"
1639
+ },
1640
+ "metadata": {
1641
+ "key": "library",
1642
+ "group": "Địa điểm",
1643
+ "isDefault": true
1644
+ }
1645
+ }, {
1646
+ "id": "pois_theater_symbol",
1647
+ "type": "symbol",
1648
+ "source": "map4d",
1649
+ "source_layer": "pois",
1650
+ "filter": {
1651
+ "kind": ["theater"]
1652
+ },
1653
+ "draw": {
1654
+ "icon_image": "pois",
1655
+ "icon_index": 37,
1656
+ "icon_color": "#12b5cbff",
1657
+ "text_size": 12,
1658
+ "text_color": "#12b5cbff",
1659
+ "text_halo_color": "#fdfdfd"
1660
+ },
1661
+ "metadata": {
1662
+ "key": "theater",
1663
+ "group": "Địa điểm",
1664
+ "isDefault": true
1665
+ }
1666
+ }, {
1667
+ "id": "pois_spa_symbol",
1668
+ "type": "symbol",
1669
+ "source": "map4d",
1670
+ "source_layer": "pois",
1671
+ "filter": {
1672
+ "kind": ["spa", "hair_care", "beauty_salon"]
1673
+ },
1674
+ "draw": {
1675
+ "icon_image": "pois",
1676
+ "icon_index": 38,
1677
+ "icon_color": "#8d70d5ff",
1678
+ "text_size": 12,
1679
+ "text_color": "#8d70d5ff",
1680
+ "text_halo_color": "#fdfdfd"
1681
+ },
1682
+ "metadata": {
1683
+ "key": "spa",
1684
+ "group": "Địa điểm",
1685
+ "isDefault": true
1686
+ }
1687
+ }, {
1688
+ "id": "pois_casino_symbol",
1689
+ "type": "symbol",
1690
+ "source": "map4d",
1691
+ "source_layer": "pois",
1692
+ "filter": {
1693
+ "kind": ["casino"]
1694
+ },
1695
+ "draw": {
1696
+ "icon_image": "pois",
1697
+ "icon_index": 39,
1698
+ "icon_color": "#12b5cbff",
1699
+ "text_size": 12,
1700
+ "text_color": "#12b5cbff",
1701
+ "text_halo_color": "#fdfdfd"
1702
+ },
1703
+ "metadata": {
1704
+ "key": "casino",
1705
+ "group": "Địa điểm",
1706
+ "isDefault": true
1707
+ }
1708
+ }, {
1709
+ "id": "pois_courthouse_symbol",
1710
+ "type": "symbol",
1711
+ "source": "map4d",
1712
+ "source_layer": "pois",
1713
+ "filter": {
1714
+ "kind": ["courthouse", "lawyer"]
1715
+ },
1716
+ "draw": {
1717
+ "icon_image": "pois",
1718
+ "icon_index": 40,
1719
+ "icon_color": "#678899ff",
1720
+ "text_size": 12,
1721
+ "text_color": "#678899ff",
1722
+ "text_halo_color": "#fdfdfd"
1723
+ },
1724
+ "metadata": {
1725
+ "key": "courthouse",
1726
+ "group": "Địa điểm",
1727
+ "isDefault": true
1728
+ }
1729
+ }, {
1730
+ "id": "pois_police_symbol",
1731
+ "type": "symbol",
1732
+ "source": "map4d",
1733
+ "source_layer": "pois",
1734
+ "filter": {
1735
+ "kind": ["police"]
1736
+ },
1737
+ "draw": {
1738
+ "icon_image": "pois",
1739
+ "icon_index": 41,
1740
+ "icon_color": "#678899ff",
1741
+ "text_size": 12,
1742
+ "text_color": "#678899ff",
1743
+ "text_halo_color": "#fdfdfd"
1744
+ },
1745
+ "metadata": {
1746
+ "key": "police",
1747
+ "group": "Địa điểm",
1748
+ "isDefault": true
1749
+ }
1750
+ }, {
1751
+ "id": "pois_committee_symbol",
1752
+ "type": "symbol",
1753
+ "source": "map4d",
1754
+ "source_layer": "pois",
1755
+ "filter": {
1756
+ "kind": ["committee"]
1757
+ },
1758
+ "draw": {
1759
+ "icon_image": "pois",
1760
+ "icon_index": 42,
1761
+ "icon_color": "#678899ff",
1762
+ "text_size": 12,
1763
+ "text_color": "#678899ff",
1764
+ "text_halo_color": "#fdfdfd"
1765
+ },
1766
+ "metadata": {
1767
+ "key": "committee",
1768
+ "group": "Địa điểm",
1769
+ "isDefault": true
1770
+ }
1771
+ }, {
1772
+ "id": "pois_political_symbol",
1773
+ "type": "symbol",
1774
+ "source": "map4d",
1775
+ "source_layer": "pois",
1776
+ "filter": {
1777
+ "kind": ["political"]
1778
+ },
1779
+ "draw": {
1780
+ "icon_image": "pois",
1781
+ "icon_index": 43,
1782
+ "icon_color": "#678899ff",
1783
+ "text_size": 12,
1784
+ "text_color": "#678899ff",
1785
+ "text_halo_color": "#fdfdfd"
1786
+ },
1787
+ "metadata": {
1788
+ "key": "political",
1789
+ "group": "Địa điểm",
1790
+ "isDefault": true
1791
+ }
1792
+ }, {
1793
+ "id": "pois_community_center_symbol",
1794
+ "type": "symbol",
1795
+ "source": "map4d",
1796
+ "source_layer": "pois",
1797
+ "filter": {
1798
+ "kind": ["community_center"]
1799
+ },
1800
+ "draw": {
1801
+ "icon_image": "pois",
1802
+ "icon_index": 44,
1803
+ "icon_color": "#678899ff",
1804
+ "text_size": 12,
1805
+ "text_color": "#678899ff",
1806
+ "text_halo_color": "#fdfdfd"
1807
+ },
1808
+ "metadata": {
1809
+ "key": "community_center",
1810
+ "group": "Địa điểm",
1811
+ "isDefault": true
1812
+ }
1813
+ }, {
1814
+ "id": "pois_fire_station_symbol",
1815
+ "type": "symbol",
1816
+ "source": "map4d",
1817
+ "source_layer": "pois",
1818
+ "filter": {
1819
+ "kind": ["fire_station"]
1820
+ },
1821
+ "draw": {
1822
+ "icon_image": "pois",
1823
+ "icon_index": 45,
1824
+ "icon_color": "#678899ff",
1825
+ "text_size": 12,
1826
+ "text_color": "#678899ff",
1827
+ "text_halo_color": "#fdfdfd"
1828
+ },
1829
+ "metadata": {
1830
+ "key": "fire_station",
1831
+ "group": "Địa điểm",
1832
+ "isDefault": true
1833
+ }
1834
+ }, {
1835
+ "id": "pois_post_office_symbol",
1836
+ "type": "symbol",
1837
+ "source": "map4d",
1838
+ "source_layer": "pois",
1839
+ "filter": {
1840
+ "kind": ["post_office"]
1841
+ },
1842
+ "draw": {
1843
+ "icon_image": "pois",
1844
+ "icon_index": 46,
1845
+ "icon_color": "#678899ff",
1846
+ "text_size": 12,
1847
+ "text_color": "#678899ff",
1848
+ "text_halo_color": "#fdfdfd"
1849
+ },
1850
+ "metadata": {
1851
+ "key": "post_office",
1852
+ "group": "Địa điểm",
1853
+ "isDefault": true
1854
+ }
1855
+ }, {
1856
+ "id": "pois_veterinary_care_symbol",
1857
+ "type": "symbol",
1858
+ "source": "map4d",
1859
+ "source_layer": "pois",
1860
+ "filter": {
1861
+ "kind": ["veterinary_care"]
1862
+ },
1863
+ "draw": {
1864
+ "icon_image": "pois",
1865
+ "icon_index": 9,
1866
+ "icon_color": "#f56357ff",
1867
+ "text_size": 12,
1868
+ "text_color": "#f56357ff",
1869
+ "text_halo_color": "#fdfdfd"
1870
+ },
1871
+ "metadata": {
1872
+ "key": "veterinary_care",
1873
+ "group": "Địa điểm",
1874
+ "isDefault": true
1875
+ }
1876
+ }, {
1877
+ "id": "pois_public_restroom_symbol",
1878
+ "type": "symbol",
1879
+ "source": "map4d",
1880
+ "source_layer": "pois",
1881
+ "filter": {
1882
+ "kind": ["public_restroom"]
1883
+ },
1884
+ "draw": {
1885
+ "icon_image": "pois",
1886
+ "icon_index": 47,
1887
+ "icon_color": "#678899ff",
1888
+ "text_size": 12,
1889
+ "text_color": "#678899ff",
1890
+ "text_halo_color": "#fdfdfd"
1891
+ },
1892
+ "metadata": {
1893
+ "key": "public_restroom",
1894
+ "group": "Địa điểm",
1895
+ "isDefault": true
1896
+ }
1897
+ }, {
1898
+ "id": "pois_cemetery_symbol",
1899
+ "type": "symbol",
1900
+ "source": "map4d",
1901
+ "source_layer": "pois",
1902
+ "filter": {
1903
+ "kind": ["cemetery"]
1904
+ },
1905
+ "draw": {
1906
+ "icon_image": "pois",
1907
+ "icon_index": 48,
1908
+ "icon_color": "#678899ff",
1909
+ "text_size": 12,
1910
+ "text_color": "#678899ff",
1911
+ "text_halo_color": "#fdfdfd"
1912
+ },
1913
+ "metadata": {
1914
+ "key": "cemetery",
1915
+ "group": "Địa điểm",
1916
+ "isDefault": true
1917
+ }
1918
+ }, {
1919
+ "id": "pois_bridge_symbol",
1920
+ "type": "symbol",
1921
+ "source": "map4d",
1922
+ "source_layer": "pois",
1923
+ "filter": {
1924
+ "kind": ["bridge"]
1925
+ },
1926
+ "draw": {
1927
+ "icon_image": "pois",
1928
+ "icon_index": 49,
1929
+ "icon_color": "#678899ff",
1930
+ "text_size": 12,
1931
+ "text_color": "#678899ff",
1932
+ "text_halo_color": "#fdfdfd"
1933
+ },
1934
+ "metadata": {
1935
+ "key": "bridge",
1936
+ "group": "Địa điểm",
1937
+ "isDefault": true
1938
+ }
1939
+ }, {
1940
+ "id": "pois_power_station_symbol",
1941
+ "type": "symbol",
1942
+ "source": "map4d",
1943
+ "source_layer": "pois",
1944
+ "filter": {
1945
+ "kind": ["power_station"]
1946
+ },
1947
+ "draw": {
1948
+ "icon_image": "pois",
1949
+ "icon_index": 51,
1950
+ "icon_color": "#678899ff",
1951
+ "text_size": 12,
1952
+ "text_color": "#678899ff",
1953
+ "text_halo_color": "#fdfdfd"
1954
+ },
1955
+ "metadata": {
1956
+ "key": "power_station",
1957
+ "group": "Địa điểm",
1958
+ "isDefault": true
1959
+ }
1960
+ }, {
1961
+ "id": "pois_resort_symbol",
1962
+ "type": "symbol",
1963
+ "source": "map4d",
1964
+ "source_layer": "pois",
1965
+ "filter": {
1966
+ "kind": ["resort"]
1967
+ },
1968
+ "draw": {
1969
+ "icon_image": "pois",
1970
+ "icon_index": 18,
1971
+ "icon_color": "#f06292ff",
1972
+ "text_size": 12,
1973
+ "text_color": "#f06292ff",
1974
+ "text_halo_color": "#fdfdfd"
1975
+ },
1976
+ "metadata": {
1977
+ "key": "resort",
1978
+ "group": "Địa điểm",
1979
+ "isDefault": true
1980
+ }
1981
+ }, {
1982
+ "id": "pois_food_service_symbol",
1983
+ "type": "symbol",
1984
+ "source": "map4d",
1985
+ "source_layer": "pois",
1986
+ "filter": {
1987
+ "kind": ["food_service", "bakery", "eatery", "fast_food", "sweet_soup", "ice_cream_shop", "take_away", "restaurant", "beer_bar"]
1988
+ },
1989
+ "draw": {
1990
+ "icon_image": "pois",
1991
+ "icon_index": 20,
1992
+ "icon_color": "#f19800ff",
1993
+ "text_size": 12,
1994
+ "text_color": "#f19800ff",
1995
+ "text_halo_color": "#fdfdfd"
1996
+ },
1997
+ "metadata": {
1998
+ "key": "food_service",
1999
+ "group": "Địa điểm",
2000
+ "isDefault": true
2001
+ }
2002
+ }, {
2003
+ "id": "pois_tourist_attraction_symbol",
2004
+ "type": "symbol",
2005
+ "source": "map4d",
2006
+ "source_layer": "pois",
2007
+ "filter": {
2008
+ "kind": ["tourist_attraction"]
2009
+ },
2010
+ "draw": {
2011
+ "icon_image": "pois",
2012
+ "icon_index": 53,
2013
+ "icon_color": "#00bcfcff",
2014
+ "text_size": 12,
2015
+ "text_color": "#00bcfcff",
2016
+ "text_halo_color": "#fdfdfd"
2017
+ },
2018
+ "metadata": {
2019
+ "key": "tourist_attraction",
2020
+ "group": "Địa điểm",
2021
+ "isDefault": true
2022
+ }
2023
+ }, {
2024
+ "id": "pois_bar_symbol",
2025
+ "type": "symbol",
2026
+ "source": "map4d",
2027
+ "source_layer": "pois",
2028
+ "filter": {
2029
+ "kind": ["bar", "pub", "karaoke"]
2030
+ },
2031
+ "draw": {
2032
+ "icon_image": "pois",
2033
+ "icon_index": 21,
2034
+ "icon_color": "#f19800ff",
2035
+ "text_size": 12,
2036
+ "text_color": "#f19800ff",
2037
+ "text_halo_color": "#fdfdfd"
2038
+ },
2039
+ "metadata": {
2040
+ "key": "bar",
2041
+ "group": "Địa điểm",
2042
+ "isDefault": true
2043
+ }
2044
+ }, {
2045
+ "id": "pois_harbour_symbol",
2046
+ "type": "symbol",
2047
+ "source": "map4d",
2048
+ "source_layer": "pois",
2049
+ "filter": {
2050
+ "kind": ["harbour"]
2051
+ },
2052
+ "draw": {
2053
+ "icon_image": "pois",
2054
+ "icon_index": 50,
2055
+ "icon_color": "#678899ff",
2056
+ "text_size": 12,
2057
+ "text_color": "#678899ff",
2058
+ "text_halo_color": "#fdfdfd"
2059
+ },
2060
+ "metadata": {
2061
+ "key": "harbour",
2062
+ "group": "Địa điểm",
2063
+ "isDefault": true
2064
+ }
2065
+ }, {
2066
+ "id": "landuse_landuse_fill",
2067
+ "type": "fill",
2068
+ "source": "map4d",
2069
+ "source_layer": "landuse",
2070
+ "draw": {},
2071
+ "metadata": {
2072
+ "key": "landuse",
2073
+ "group": "Các bề mặt",
2074
+ "isDefault": true
2075
+ }
2076
+ }, {
2077
+ "id": "landuse_aerodrome_fill",
2078
+ "type": "fill",
2079
+ "source": "map4d",
2080
+ "source_layer": "landuse",
2081
+ "filter": {
2082
+ "kind": ["aerodrome", "apron"]
2083
+ },
2084
+ "draw": {
2085
+ "color": "#e8eaedff"
2086
+ },
2087
+ "metadata": {
2088
+ "key": "aerodrome",
2089
+ "group": "Các bề mặt",
2090
+ "isDefault": true
2091
+ }
2092
+ }, {
2093
+ "id": "landuse_grass_fill",
2094
+ "type": "fill",
2095
+ "source": "map4d",
2096
+ "source_layer": "landuse",
2097
+ "filter": {
2098
+ "kind": ["grass", "forest", "park", "theme_park", "grassland", "natural_wood", "garden", "cemetery", "attraction", "golf_course"]
2099
+ },
2100
+ "draw": {
2101
+ "color": "#ceead6ff"
2102
+ },
2103
+ "metadata": {
2104
+ "key": "grass",
2105
+ "group": "Các bề mặt",
2106
+ "isDefault": true
2107
+ }
2108
+ }, {
2109
+ "id": "landuse_hospital_fill",
2110
+ "type": "fill",
2111
+ "source": "map4d",
2112
+ "source_layer": "landuse",
2113
+ "filter": {
2114
+ "kind": ["hospital"]
2115
+ },
2116
+ "draw": {
2117
+ "color": "#FCE8E6"
2118
+ },
2119
+ "metadata": {
2120
+ "key": "hospital",
2121
+ "group": "Các bề mặt",
2122
+ "isDefault": true
2123
+ }
2124
+ }, {
2125
+ "id": "landuse_university_fill",
2126
+ "type": "fill",
2127
+ "source": "map4d",
2128
+ "source_layer": "landuse",
2129
+ "filter": {
2130
+ "kind": ["university", "school", "college"]
2131
+ },
2132
+ "draw": {
2133
+ "color": "#F6F7F9"
2134
+ },
2135
+ "metadata": {
2136
+ "key": "university",
2137
+ "group": "Các bề mặt",
2138
+ "isDefault": true
2139
+ }
2140
+ }, {
2141
+ "id": "landuse_stadium_fill",
2142
+ "type": "fill",
2143
+ "source": "map4d",
2144
+ "source_layer": "landuse",
2145
+ "filter": {
2146
+ "kind": ["stadium", "pitch", "sports_centre"]
2147
+ },
2148
+ "draw": {
2149
+ "color": "#ceead6ff"
2150
+ },
2151
+ "metadata": {
2152
+ "key": "stadium",
2153
+ "group": "Các bề mặt",
2154
+ "isDefault": true
2155
+ }
2156
+ }, {
2157
+ "id": "landuse_beach_fill",
2158
+ "type": "fill",
2159
+ "source": "map4d",
2160
+ "source_layer": "landuse",
2161
+ "filter": {
2162
+ "kind": ["beach"]
2163
+ },
2164
+ "draw": {
2165
+ "color": "#f1e9d7ff"
2166
+ },
2167
+ "metadata": {
2168
+ "key": "beach",
2169
+ "group": "Các bề mặt",
2170
+ "isDefault": true
2171
+ }
2172
+ }, {
2173
+ "id": "landuse_pedestrian_fill",
2174
+ "type": "fill",
2175
+ "source": "map4d",
2176
+ "source_layer": "landuse",
2177
+ "filter": {
2178
+ "kind": ["pedestrian"]
2179
+ },
2180
+ "draw": {
2181
+ "color": "#ebf7edff"
2182
+ },
2183
+ "metadata": {
2184
+ "key": "pedestrian",
2185
+ "group": "Các bề mặt",
2186
+ "isDefault": true
2187
+ }
2188
+ }, {
2189
+ "id": "landuse_substation_fill",
2190
+ "type": "fill",
2191
+ "source": "map4d",
2192
+ "source_layer": "landuse",
2193
+ "filter": {
2194
+ "kind": ["substation", "power_line"]
2195
+ },
2196
+ "draw": {
2197
+ "color": "#e6e8eaff"
2198
+ },
2199
+ "metadata": {
2200
+ "key": "substation",
2201
+ "group": "Các bề mặt",
2202
+ "isDefault": true
2203
+ }
2204
+ }, {
2205
+ "id": "landuse_urban_area_fill",
2206
+ "type": "fill",
2207
+ "source": "map4d",
2208
+ "source_layer": "landuse",
2209
+ "filter": {
2210
+ "kind": ["urban_area"]
2211
+ },
2212
+ "draw": {
2213
+ "color": "#E2E4E6"
2214
+ },
2215
+ "metadata": {
2216
+ "key": "urban_area",
2217
+ "group": "Các bề mặt",
2218
+ "isDefault": true
2219
+ }
2220
+ }, {
2221
+ "id": "buildings_buildings_fill",
2222
+ "type": "fill",
2223
+ "source": "map4d",
2224
+ "source_layer": "buildings",
2225
+ "draw": {
2226
+ "color": "#fef7e0ff"
2227
+ },
2228
+ "metadata": {
2229
+ "key": "buildings",
2230
+ "group": "Công trình xây dựng",
2231
+ "isDefault": true
2232
+ }
2233
+ }, {
2234
+ "id": "buildings_building_fill",
2235
+ "type": "fill",
2236
+ "source": "map4d",
2237
+ "source_layer": "buildings",
2238
+ "filter": {
2239
+ "kind": ["building", "building_part"]
2240
+ },
2241
+ "draw": {
2242
+ "color": "#e6e8eaff"
2243
+ },
2244
+ "metadata": {
2245
+ "key": "building",
2246
+ "group": "Công trình xây dựng",
2247
+ "isDefault": true
2248
+ }
2249
+ }, {
2250
+ "id": "buildings_roof_fill",
2251
+ "type": "fill",
2252
+ "source": "map4d",
2253
+ "source_layer": "buildings",
2254
+ "filter": {
2255
+ "kind": ["building", "building_part"],
2256
+ "kind_detail": ["roof"]
2257
+ },
2258
+ "draw": {
2259
+ "color": "#fef7e0ff"
2260
+ },
2261
+ "metadata": {
2262
+ "key": "roof",
2263
+ "group": "Công trình xây dựng",
2264
+ "isDefault": true
2265
+ }
2266
+ }, {
2267
+ "id": "buildings_entrance_exit_fill",
2268
+ "type": "fill",
2269
+ "source": "map4d",
2270
+ "source_layer": "buildings",
2271
+ "filter": {
2272
+ "kind": ["entrance", "exit"]
2273
+ },
2274
+ "draw": {
2275
+ "color": "#fef7e0ff"
2276
+ },
2277
+ "metadata": {
2278
+ "key": "entrance_exit",
2279
+ "group": "Công trình xây dựng",
2280
+ "isDefault": true
2281
+ }
2282
+ }],
2283
+ "tool-version": "2.0.1",
2284
+ "version": 2
2285
+ };
2286
+ var _default = defaultRoadmapStyle;
2287
+ exports.default = _default;
2288
+ //# sourceMappingURL=DefaultRoadmapStyle.js.map