bbj-screen-widget 2.4.44

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 (396) hide show
  1. package/README.md +24 -0
  2. package/bbj-screen-widget.d.ts +117 -0
  3. package/bbj-screen-widget.metadata.json +1 -0
  4. package/bundles/bbj-screen-widget-core.umd.js +606 -0
  5. package/bundles/bbj-screen-widget-core.umd.js.map +1 -0
  6. package/bundles/bbj-screen-widget-core.umd.min.js +2 -0
  7. package/bundles/bbj-screen-widget-core.umd.min.js.map +1 -0
  8. package/bundles/bbj-screen-widget.umd.js +21247 -0
  9. package/bundles/bbj-screen-widget.umd.js.map +1 -0
  10. package/bundles/bbj-screen-widget.umd.min.js +2 -0
  11. package/bundles/bbj-screen-widget.umd.min.js.map +1 -0
  12. package/core/bbj-screen-widget-core.d.ts +4 -0
  13. package/core/bbj-screen-widget-core.metadata.json +1 -0
  14. package/core/package.json +11 -0
  15. package/core/public_api.d.ts +1 -0
  16. package/core/service/baidu-map.service.d.ts +16 -0
  17. package/esm2015/bbj-screen-widget.js +118 -0
  18. package/esm2015/core/bbj-screen-widget-core.js +5 -0
  19. package/esm2015/core/public_api.js +2 -0
  20. package/esm2015/core/service/baidu-map.service.js +101 -0
  21. package/esm2015/lib/announcement/announcement.component.js +80 -0
  22. package/esm2015/lib/announcement/announcement.module.js +25 -0
  23. package/esm2015/lib/audio/audio.component.js +167 -0
  24. package/esm2015/lib/audio/audio.module.js +20 -0
  25. package/esm2015/lib/background/background.component.js +52 -0
  26. package/esm2015/lib/background/background.module.js +19 -0
  27. package/esm2015/lib/bar-chart-three-d/bar-chart-three-d.component.js +323 -0
  28. package/esm2015/lib/bar-chart-three-d/bar-chart-three-d.module.js +20 -0
  29. package/esm2015/lib/basic-bar-chart/basic-bar-chart.component.js +604 -0
  30. package/esm2015/lib/basic-bar-chart/basic-bar-chart.module.js +27 -0
  31. package/esm2015/lib/basic-line-chart/basic-line-chart.component.js +782 -0
  32. package/esm2015/lib/basic-line-chart/basic-line-chart.module.js +20 -0
  33. package/esm2015/lib/basic-pie-chart/basic-pie-chart.component.js +471 -0
  34. package/esm2015/lib/basic-pie-chart/basic-pie-chart.module.js +20 -0
  35. package/esm2015/lib/basic-planimetric-map/basic-planimetric-map.component.js +233 -0
  36. package/esm2015/lib/basic-planimetric-map/basic-planimetric-map.module.js +21 -0
  37. package/esm2015/lib/breathing-bubble-layer/breathing-bubble-layer.component.js +503 -0
  38. package/esm2015/lib/breathing-bubble-layer/breathing-bubble-layer.module.js +19 -0
  39. package/esm2015/lib/bubble-chart/bubble-chart.component.js +348 -0
  40. package/esm2015/lib/bubble-chart/bubble-chart.module.js +20 -0
  41. package/esm2015/lib/bulletin-board/bulletin-board.component.js +160 -0
  42. package/esm2015/lib/bulletin-board/bulletin-board.module.js +23 -0
  43. package/esm2015/lib/button/button.component.js +186 -0
  44. package/esm2015/lib/button/button.module.js +21 -0
  45. package/esm2015/lib/calendar/calendar.component.js +96 -0
  46. package/esm2015/lib/calendar/calendar.module.js +28 -0
  47. package/esm2015/lib/checkbox/checkbox.component.js +333 -0
  48. package/esm2015/lib/checkbox/checkbox.module.js +21 -0
  49. package/esm2015/lib/cross-table/cross-table.component.js +291 -0
  50. package/esm2015/lib/cross-table/cross-table.module.js +20 -0
  51. package/esm2015/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.js +685 -0
  52. package/esm2015/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.js +278 -0
  53. package/esm2015/lib/custom-baidu-map/base-layer.js +53 -0
  54. package/esm2015/lib/custom-baidu-map/custom-baidu-map.component.js +655 -0
  55. package/esm2015/lib/custom-baidu-map/custom-baidu-map.module.js +46 -0
  56. package/esm2015/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.js +116 -0
  57. package/esm2015/lib/custom-baidu-map/wind-layer/wind-layer.component.js +331 -0
  58. package/esm2015/lib/date-picker/date-picker.component.js +447 -0
  59. package/esm2015/lib/date-picker/date-picker.module.js +22 -0
  60. package/esm2015/lib/funnel-chart/funnel-chart.component.js +241 -0
  61. package/esm2015/lib/funnel-chart/funnel-chart.module.js +20 -0
  62. package/esm2015/lib/gantt/gantt.component.js +222 -0
  63. package/esm2015/lib/gantt/gantt.module.js +39 -0
  64. package/esm2015/lib/gauge/gauge.component.js +324 -0
  65. package/esm2015/lib/gauge/gauge.module.js +20 -0
  66. package/esm2015/lib/gauge-progress/gauge-progress.component.js +348 -0
  67. package/esm2015/lib/gauge-progress/gauge.module.js +21 -0
  68. package/esm2015/lib/general-text/general-text.component.js +144 -0
  69. package/esm2015/lib/general-text/general-text.module.js +20 -0
  70. package/esm2015/lib/iconfont/icon.js +199 -0
  71. package/esm2015/lib/iconfont/iconfont.component.js +56 -0
  72. package/esm2015/lib/iconfont/iconfont.module.js +20 -0
  73. package/esm2015/lib/iframe/iframe.component.js +46 -0
  74. package/esm2015/lib/iframe/iframe.module.js +20 -0
  75. package/esm2015/lib/image/image.component.js +98 -0
  76. package/esm2015/lib/image/image.module.js +19 -0
  77. package/esm2015/lib/item-swiper/item-swiper.component.js +334 -0
  78. package/esm2015/lib/item-swiper/item-swiper.module.js +28 -0
  79. package/esm2015/lib/line-bar-chart/line-bar-chart.component.js +398 -0
  80. package/esm2015/lib/line-bar-chart/line-bar-chart.module.js +20 -0
  81. package/esm2015/lib/line-light-flow/line-light-flow.component.js +241 -0
  82. package/esm2015/lib/line-light-flow/line-light-flow.module.js +24 -0
  83. package/esm2015/lib/liquid-fill/liquid-fill.component.js +158 -0
  84. package/esm2015/lib/liquid-fill/liquid-fill.module.js +20 -0
  85. package/esm2015/lib/marquee/marquee.component.js +110 -0
  86. package/esm2015/lib/marquee/marquee.module.js +19 -0
  87. package/esm2015/lib/mip-anim/mip-anim.component.js +26 -0
  88. package/esm2015/lib/mip-anim/mip-anim.module.js +19 -0
  89. package/esm2015/lib/multi-title-gauge/multi-title-gauge.component.js +277 -0
  90. package/esm2015/lib/multi-title-gauge/multi-title-gauge.module.js +22 -0
  91. package/esm2015/lib/number-flop/number-flop.component.js +124 -0
  92. package/esm2015/lib/number-flop/number-flop.module.js +19 -0
  93. package/esm2015/lib/parent-container/parent-container.component.js +21 -0
  94. package/esm2015/lib/parent-container/parent-container.module.js +19 -0
  95. package/esm2015/lib/percent-pie-chart/percent-pie-chart.component.js +248 -0
  96. package/esm2015/lib/percent-pie-chart/percent-pie-chart.module.js +20 -0
  97. package/esm2015/lib/pie3d-chart/pie3d-chart.component.js +303 -0
  98. package/esm2015/lib/pie3d-chart/pie3d-chart.module.js +19 -0
  99. package/esm2015/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.js +431 -0
  100. package/esm2015/lib/planimetric-map2d/fly-line-layer/fly-line-layer.module.js +19 -0
  101. package/esm2015/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.js +252 -0
  102. package/esm2015/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.module.js +19 -0
  103. package/esm2015/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.js +124 -0
  104. package/esm2015/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.module.js +19 -0
  105. package/esm2015/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.js +359 -0
  106. package/esm2015/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.module.js +21 -0
  107. package/esm2015/lib/planimetric-map2d/planimetric-map2d.component.js +712 -0
  108. package/esm2015/lib/planimetric-map2d/planimetric-map2d.module.js +34 -0
  109. package/esm2015/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.js +128 -0
  110. package/esm2015/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.module.js +19 -0
  111. package/esm2015/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.js +242 -0
  112. package/esm2015/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.module.js +19 -0
  113. package/esm2015/lib/planimetric-map3d/planimetric-map3d.component.js +265 -0
  114. package/esm2015/lib/planimetric-map3d/planimetric-map3d.module.js +22 -0
  115. package/esm2015/lib/radar-chart/radar-chart.component.js +236 -0
  116. package/esm2015/lib/radar-chart/radar-chart.module.js +20 -0
  117. package/esm2015/lib/radio/radio.component.js +148 -0
  118. package/esm2015/lib/radio/radio.module.js +21 -0
  119. package/esm2015/lib/rate/rate.component.js +57 -0
  120. package/esm2015/lib/rate/rate.module.js +23 -0
  121. package/esm2015/lib/scatter3d/scatter3d.component.js +166 -0
  122. package/esm2015/lib/scatter3d/scatter3d.module.js +20 -0
  123. package/esm2015/lib/screen-widget.module.js +536 -0
  124. package/esm2015/lib/search/search.component.js +130 -0
  125. package/esm2015/lib/search/search.module.js +29 -0
  126. package/esm2015/lib/select/select.component.js +343 -0
  127. package/esm2015/lib/select/select.module.js +21 -0
  128. package/esm2015/lib/shape/shape.component.js +248 -0
  129. package/esm2015/lib/shape/shape.module.js +19 -0
  130. package/esm2015/lib/shared/component/video-player/video-player.component.js +114 -0
  131. package/esm2015/lib/shared/component/video-player/video-player.module.js +14 -0
  132. package/esm2015/lib/shared/service/common.service.js +39 -0
  133. package/esm2015/lib/shared/service/file-url.service.js +12 -0
  134. package/esm2015/lib/shared/service/gaode-map.service.js +36 -0
  135. package/esm2015/lib/shared/service/highcharts.service.js +36 -0
  136. package/esm2015/lib/shared/service/http.service.js +20 -0
  137. package/esm2015/lib/shared/util/base.util.js +5 -0
  138. package/esm2015/lib/shared/util/echarts.util.js +12 -0
  139. package/esm2015/lib/shared/util/style.util.js +19 -0
  140. package/esm2015/lib/shuffling-list/color.pipe.js +23 -0
  141. package/esm2015/lib/shuffling-list/shuffling-list.component.js +600 -0
  142. package/esm2015/lib/shuffling-list/shuffling-list.module.js +22 -0
  143. package/esm2015/lib/table/table.component.js +657 -0
  144. package/esm2015/lib/table/table.module.js +38 -0
  145. package/esm2015/lib/tabs/tab/tab.component.js +27 -0
  146. package/esm2015/lib/tabs/tabs.component.js +85 -0
  147. package/esm2015/lib/tabs/tabs.module.js +22 -0
  148. package/esm2015/lib/temporary-data/temporary-data.component.js +49 -0
  149. package/esm2015/lib/temporary-data/temporary-data.module.js +20 -0
  150. package/esm2015/lib/time-picker/time-picker.component.js +112 -0
  151. package/esm2015/lib/time-picker/time-picker.module.js +21 -0
  152. package/esm2015/lib/timer/timer.component.js +108 -0
  153. package/esm2015/lib/timer/timer.module.js +20 -0
  154. package/esm2015/lib/tree-control/tree-control.component.js +381 -0
  155. package/esm2015/lib/tree-control/tree-control.module.js +24 -0
  156. package/esm2015/lib/tree-ring-chart/tree-ring-chart.component.js +215 -0
  157. package/esm2015/lib/tree-ring-chart/tree-ring-chart.module.js +20 -0
  158. package/esm2015/lib/upload/upload.component.js +127 -0
  159. package/esm2015/lib/upload/upload.module.js +22 -0
  160. package/esm2015/lib/video-grid/video-grid.component.js +133 -0
  161. package/esm2015/lib/video-grid/video-grid.module.js +22 -0
  162. package/esm2015/lib/visual-map-chart/visual-map-chart.component.js +395 -0
  163. package/esm2015/lib/visual-map-chart/visual-map-chart.module.js +20 -0
  164. package/esm2015/lib/vote/vote.component.js +100 -0
  165. package/esm2015/lib/vote/vote.module.js +21 -0
  166. package/esm2015/lib/weather/weather.component.js +92 -0
  167. package/esm2015/lib/weather/weather.module.js +21 -0
  168. package/esm2015/lib/wordart/wordart.component.js +84 -0
  169. package/esm2015/lib/wordart/wordart.module.js +19 -0
  170. package/esm2015/lib/workbench-widget.module.js +620 -0
  171. package/esm2015/public-api.js +39 -0
  172. package/fesm2015/bbj-screen-widget-core.js +107 -0
  173. package/fesm2015/bbj-screen-widget-core.js.map +1 -0
  174. package/fesm2015/bbj-screen-widget.js +20169 -0
  175. package/fesm2015/bbj-screen-widget.js.map +1 -0
  176. package/lib/announcement/announcement.component.d.ts +13 -0
  177. package/lib/announcement/announcement.module.d.ts +5 -0
  178. package/lib/audio/audio.component.d.ts +22 -0
  179. package/lib/audio/audio.module.d.ts +4 -0
  180. package/lib/background/background.component.d.ts +12 -0
  181. package/lib/background/background.module.d.ts +4 -0
  182. package/lib/bar-chart-three-d/bar-chart-three-d.component.d.ts +30 -0
  183. package/lib/bar-chart-three-d/bar-chart-three-d.module.d.ts +4 -0
  184. package/lib/basic-bar-chart/basic-bar-chart.component.d.ts +105 -0
  185. package/lib/basic-bar-chart/basic-bar-chart.module.d.ts +5 -0
  186. package/lib/basic-line-chart/basic-line-chart.component.d.ts +102 -0
  187. package/lib/basic-line-chart/basic-line-chart.module.d.ts +4 -0
  188. package/lib/basic-pie-chart/basic-pie-chart.component.d.ts +56 -0
  189. package/lib/basic-pie-chart/basic-pie-chart.module.d.ts +4 -0
  190. package/lib/basic-planimetric-map/basic-planimetric-map.component.d.ts +18 -0
  191. package/lib/basic-planimetric-map/basic-planimetric-map.module.d.ts +4 -0
  192. package/lib/breathing-bubble-layer/breathing-bubble-layer.component.d.ts +210 -0
  193. package/lib/breathing-bubble-layer/breathing-bubble-layer.module.d.ts +4 -0
  194. package/lib/bubble-chart/bubble-chart.component.d.ts +75 -0
  195. package/lib/bubble-chart/bubble-chart.module.d.ts +4 -0
  196. package/lib/bulletin-board/bulletin-board.component.d.ts +25 -0
  197. package/lib/bulletin-board/bulletin-board.module.d.ts +4 -0
  198. package/lib/button/button.component.d.ts +25 -0
  199. package/lib/button/button.module.d.ts +4 -0
  200. package/lib/calendar/calendar.component.d.ts +14 -0
  201. package/lib/calendar/calendar.module.d.ts +4 -0
  202. package/lib/checkbox/checkbox.component.d.ts +45 -0
  203. package/lib/checkbox/checkbox.module.d.ts +4 -0
  204. package/lib/cross-table/cross-table.component.d.ts +30 -0
  205. package/lib/cross-table/cross-table.module.d.ts +4 -0
  206. package/lib/custom-baidu-map/baidu-marker-layer/baidu-marker-layer.component.d.ts +67 -0
  207. package/lib/custom-baidu-map/baidu-polyline-layer/baidu-polyline-layer.component.d.ts +23 -0
  208. package/lib/custom-baidu-map/base-layer.d.ts +16 -0
  209. package/lib/custom-baidu-map/custom-baidu-map.component.d.ts +92 -0
  210. package/lib/custom-baidu-map/custom-baidu-map.module.d.ts +4 -0
  211. package/lib/custom-baidu-map/typhoon-area-layer/typhoon-area-layer.component.d.ts +16 -0
  212. package/lib/custom-baidu-map/wind-layer/wind-layer.component.d.ts +28 -0
  213. package/lib/date-picker/date-picker.component.d.ts +63 -0
  214. package/lib/date-picker/date-picker.module.d.ts +4 -0
  215. package/lib/funnel-chart/funnel-chart.component.d.ts +24 -0
  216. package/lib/funnel-chart/funnel-chart.module.d.ts +4 -0
  217. package/lib/gantt/gantt.component.d.ts +25 -0
  218. package/lib/gantt/gantt.module.d.ts +4 -0
  219. package/lib/gauge/gauge.component.d.ts +37 -0
  220. package/lib/gauge/gauge.module.d.ts +4 -0
  221. package/lib/gauge-progress/gauge-progress.component.d.ts +46 -0
  222. package/lib/gauge-progress/gauge.module.d.ts +4 -0
  223. package/lib/general-text/general-text.component.d.ts +21 -0
  224. package/lib/general-text/general-text.module.d.ts +4 -0
  225. package/lib/iconfont/icon.d.ts +1 -0
  226. package/lib/iconfont/iconfont.component.d.ts +11 -0
  227. package/lib/iconfont/iconfont.module.d.ts +4 -0
  228. package/lib/iframe/iframe.component.d.ts +10 -0
  229. package/lib/iframe/iframe.module.d.ts +4 -0
  230. package/lib/image/image.component.d.ts +21 -0
  231. package/lib/image/image.module.d.ts +4 -0
  232. package/lib/item-swiper/item-swiper.component.d.ts +41 -0
  233. package/lib/item-swiper/item-swiper.module.d.ts +4 -0
  234. package/lib/line-bar-chart/line-bar-chart.component.d.ts +63 -0
  235. package/lib/line-bar-chart/line-bar-chart.module.d.ts +4 -0
  236. package/lib/line-light-flow/line-light-flow.component.d.ts +26 -0
  237. package/lib/line-light-flow/line-light-flow.module.d.ts +4 -0
  238. package/lib/liquid-fill/liquid-fill.component.d.ts +18 -0
  239. package/lib/liquid-fill/liquid-fill.module.d.ts +4 -0
  240. package/lib/marquee/marquee.component.d.ts +20 -0
  241. package/lib/marquee/marquee.module.d.ts +4 -0
  242. package/lib/mip-anim/mip-anim.component.d.ts +6 -0
  243. package/lib/mip-anim/mip-anim.module.d.ts +4 -0
  244. package/lib/multi-title-gauge/multi-title-gauge.component.d.ts +26 -0
  245. package/lib/multi-title-gauge/multi-title-gauge.module.d.ts +4 -0
  246. package/lib/number-flop/number-flop.component.d.ts +22 -0
  247. package/lib/number-flop/number-flop.module.d.ts +4 -0
  248. package/lib/parent-container/parent-container.component.d.ts +9 -0
  249. package/lib/parent-container/parent-container.module.d.ts +4 -0
  250. package/lib/percent-pie-chart/percent-pie-chart.component.d.ts +24 -0
  251. package/lib/percent-pie-chart/percent-pie-chart.module.d.ts +4 -0
  252. package/lib/pie3d-chart/pie3d-chart.component.d.ts +30 -0
  253. package/lib/pie3d-chart/pie3d-chart.module.d.ts +4 -0
  254. package/lib/planimetric-map2d/fly-line-layer/fly-line-layer.component.d.ts +206 -0
  255. package/lib/planimetric-map2d/fly-line-layer/fly-line-layer.module.d.ts +4 -0
  256. package/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.component.d.ts +15 -0
  257. package/lib/planimetric-map2d/map2d-mark-layer/map2d-mark-layer.module.d.ts +4 -0
  258. package/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.component.d.ts +15 -0
  259. package/lib/planimetric-map2d/map2d-polyline-layer/map2d-polyline-layer.module.d.ts +4 -0
  260. package/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.component.d.ts +49 -0
  261. package/lib/planimetric-map2d/map2d-visual-layer/map2d-visual-layer.module.d.ts +4 -0
  262. package/lib/planimetric-map2d/planimetric-map2d.component.d.ts +48 -0
  263. package/lib/planimetric-map2d/planimetric-map2d.module.d.ts +4 -0
  264. package/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.component.d.ts +14 -0
  265. package/lib/planimetric-map3d/map3d-line-layer/map3d-line-layer.module.d.ts +4 -0
  266. package/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.component.d.ts +41 -0
  267. package/lib/planimetric-map3d/map3d-mark-layer/map3d-mark-layer.module.d.ts +4 -0
  268. package/lib/planimetric-map3d/planimetric-map3d.component.d.ts +29 -0
  269. package/lib/planimetric-map3d/planimetric-map3d.module.d.ts +4 -0
  270. package/lib/radar-chart/radar-chart.component.d.ts +23 -0
  271. package/lib/radar-chart/radar-chart.module.d.ts +4 -0
  272. package/lib/radio/radio.component.d.ts +21 -0
  273. package/lib/radio/radio.module.d.ts +4 -0
  274. package/lib/rate/rate.component.d.ts +13 -0
  275. package/lib/rate/rate.module.d.ts +4 -0
  276. package/lib/scatter3d/scatter3d.component.d.ts +25 -0
  277. package/lib/scatter3d/scatter3d.module.d.ts +4 -0
  278. package/lib/screen-widget.module.d.ts +4 -0
  279. package/lib/search/search.component.d.ts +21 -0
  280. package/lib/search/search.module.d.ts +6 -0
  281. package/lib/select/select.component.d.ts +34 -0
  282. package/lib/select/select.module.d.ts +4 -0
  283. package/lib/shape/shape.component.d.ts +50 -0
  284. package/lib/shape/shape.module.d.ts +4 -0
  285. package/lib/shared/component/video-player/video-player.component.d.ts +28 -0
  286. package/lib/shared/component/video-player/video-player.module.d.ts +2 -0
  287. package/lib/shared/service/common.service.d.ts +21 -0
  288. package/lib/shared/service/file-url.service.d.ts +3 -0
  289. package/lib/shared/service/gaode-map.service.d.ts +10 -0
  290. package/lib/shared/service/highcharts.service.d.ts +9 -0
  291. package/lib/shared/service/http.service.d.ts +7 -0
  292. package/lib/shared/util/base.util.d.ts +1 -0
  293. package/lib/shared/util/echarts.util.d.ts +1 -0
  294. package/lib/shared/util/style.util.d.ts +1 -0
  295. package/lib/shuffling-list/color.pipe.d.ts +4 -0
  296. package/lib/shuffling-list/shuffling-list.component.d.ts +76 -0
  297. package/lib/shuffling-list/shuffling-list.module.d.ts +4 -0
  298. package/lib/table/table.component.d.ts +65 -0
  299. package/lib/table/table.module.d.ts +4 -0
  300. package/lib/tabs/tab/tab.component.d.ts +7 -0
  301. package/lib/tabs/tabs.component.d.ts +13 -0
  302. package/lib/tabs/tabs.module.d.ts +4 -0
  303. package/lib/temporary-data/temporary-data.component.d.ts +13 -0
  304. package/lib/temporary-data/temporary-data.module.d.ts +4 -0
  305. package/lib/time-picker/time-picker.component.d.ts +17 -0
  306. package/lib/time-picker/time-picker.module.d.ts +4 -0
  307. package/lib/timer/timer.component.d.ts +21 -0
  308. package/lib/timer/timer.module.d.ts +4 -0
  309. package/lib/tree-control/tree-control.component.d.ts +59 -0
  310. package/lib/tree-control/tree-control.module.d.ts +4 -0
  311. package/lib/tree-ring-chart/tree-ring-chart.component.d.ts +24 -0
  312. package/lib/tree-ring-chart/tree-ring-chart.module.d.ts +4 -0
  313. package/lib/upload/upload.component.d.ts +21 -0
  314. package/lib/upload/upload.module.d.ts +4 -0
  315. package/lib/video-grid/video-grid.component.d.ts +23 -0
  316. package/lib/video-grid/video-grid.module.d.ts +4 -0
  317. package/lib/visual-map-chart/visual-map-chart.component.d.ts +49 -0
  318. package/lib/visual-map-chart/visual-map-chart.module.d.ts +4 -0
  319. package/lib/vote/vote.component.d.ts +15 -0
  320. package/lib/vote/vote.module.d.ts +4 -0
  321. package/lib/weather/weather.component.d.ts +26 -0
  322. package/lib/weather/weather.module.d.ts +4 -0
  323. package/lib/wordart/wordart.component.d.ts +14 -0
  324. package/lib/wordart/wordart.module.d.ts +4 -0
  325. package/lib/workbench-widget.module.d.ts +4 -0
  326. package/package.json +30 -0
  327. package/public-api.d.ts +34 -0
  328. package/src/assets/echarts/map/json/330305.json +1 -0
  329. package/src/assets/echarts/map/json/china-cities.json +1 -0
  330. package/src/assets/echarts/map/json/china-contour.json +1 -0
  331. package/src/assets/echarts/map/json/china.json +1 -0
  332. package/src/assets/echarts/map/json/custom_map.json +1425 -0
  333. package/src/assets/echarts/map/json/custom_map_config.json +1299 -0
  334. package/src/assets/echarts/map/json/province/anhui.json +1 -0
  335. package/src/assets/echarts/map/json/province/aomen.json +1 -0
  336. package/src/assets/echarts/map/json/province/beijing.json +1 -0
  337. package/src/assets/echarts/map/json/province/chongqing.json +1 -0
  338. package/src/assets/echarts/map/json/province/fujian.json +1 -0
  339. package/src/assets/echarts/map/json/province/gansu.json +1 -0
  340. package/src/assets/echarts/map/json/province/guangdong.json +1 -0
  341. package/src/assets/echarts/map/json/province/guangxi.json +1 -0
  342. package/src/assets/echarts/map/json/province/guizhou.json +1 -0
  343. package/src/assets/echarts/map/json/province/hainan.json +1 -0
  344. package/src/assets/echarts/map/json/province/hebei.json +1 -0
  345. package/src/assets/echarts/map/json/province/heilongjiang.json +1 -0
  346. package/src/assets/echarts/map/json/province/henan.json +1 -0
  347. package/src/assets/echarts/map/json/province/hubei.json +1 -0
  348. package/src/assets/echarts/map/json/province/hunan.json +1 -0
  349. package/src/assets/echarts/map/json/province/jiangsu.json +1 -0
  350. package/src/assets/echarts/map/json/province/jiangxi.json +1 -0
  351. package/src/assets/echarts/map/json/province/jilin.json +1 -0
  352. package/src/assets/echarts/map/json/province/liaoning.json +1 -0
  353. package/src/assets/echarts/map/json/province/neimenggu.json +1 -0
  354. package/src/assets/echarts/map/json/province/ningxia.json +1 -0
  355. package/src/assets/echarts/map/json/province/qinghai.json +1 -0
  356. package/src/assets/echarts/map/json/province/shandong.json +1 -0
  357. package/src/assets/echarts/map/json/province/shanghai.json +1 -0
  358. package/src/assets/echarts/map/json/province/shanxi.json +1 -0
  359. package/src/assets/echarts/map/json/province/shanxi1.json +1 -0
  360. package/src/assets/echarts/map/json/province/sichuan.json +1 -0
  361. package/src/assets/echarts/map/json/province/taiwan.json +1 -0
  362. package/src/assets/echarts/map/json/province/tianjin.json +1 -0
  363. package/src/assets/echarts/map/json/province/xianggang.json +1 -0
  364. package/src/assets/echarts/map/json/province/xinjiang.json +1 -0
  365. package/src/assets/echarts/map/json/province/xizang.json +1 -0
  366. package/src/assets/echarts/map/json/province/yunnan.json +1 -0
  367. package/src/assets/echarts/map/json/province/zhejiang.json +1 -0
  368. package/src/assets/echarts/map/json/wenzhou.json +1 -0
  369. package/src/assets/echarts/map/json/world.json +1 -0
  370. package/src/assets/img/screen/bulletin-board.png +0 -0
  371. package/src/assets/img/screen/cross-table.png +0 -0
  372. package/src/assets/img/screen/custom-table.png +0 -0
  373. package/src/assets/img/screen/date-picker.png +0 -0
  374. package/src/assets/img/screen/file-upload.png +0 -0
  375. package/src/assets/img/screen/gantt.png +0 -0
  376. package/src/assets/img/screen/grid.png +0 -0
  377. package/src/assets/img/screen/marker.png +0 -0
  378. package/src/assets/img/screen/multiTitleGauge.png +0 -0
  379. package/src/assets/img/screen/pie3d.png +0 -0
  380. package/src/assets/img/screen/shuffling.png +0 -0
  381. package/src/assets/img/screen/sub-screen.png +0 -0
  382. package/src/assets/img/screen/time-picker.png +0 -0
  383. package/src/assets/img/screen/typhoon.png +0 -0
  384. package/src/assets/img/screen/weather_cloudy.png +0 -0
  385. package/src/assets/img/screen/weather_overcast.png +0 -0
  386. package/src/assets/img/screen/weather_rain.png +0 -0
  387. package/src/assets/img/screen/weather_sunny.png +0 -0
  388. package/src/assets/js/BMap/MarkerClusterer_min.js +1 -0
  389. package/src/assets/js/BMap/TextIconOverlay_min.js +1 -0
  390. package/src/assets/js/BMapGL/MarkerClusterer_min.js +1 -0
  391. package/src/assets/js/BMapGL/TextIconOverlay_min.js +1 -0
  392. package/src/assets/js/BMapGL/mapvgl.min.js +1023 -0
  393. package/src/assets/js/flv.min.js +10 -0
  394. package/src/assets/js/highcharts/highcharts-3d.js +104 -0
  395. package/src/assets/js/highcharts/highcharts.js +574 -0
  396. package/src/assets/js/hls.js +2 -0
@@ -0,0 +1,1425 @@
1
+ [{
2
+ "featureType": "land",
3
+ "elementType": "geometry",
4
+ "stylers": {
5
+ "visibility": "on",
6
+ "color": "#0d3751ff"
7
+ }
8
+ }, {
9
+ "featureType": "water",
10
+ "elementType": "geometry",
11
+ "stylers": {
12
+ "visibility": "on",
13
+ "color": "#151824ff"
14
+ }
15
+ }, {
16
+ "featureType": "green",
17
+ "elementType": "geometry",
18
+ "stylers": {
19
+ "visibility": "on",
20
+ "color": "#1b273bff"
21
+ }
22
+ }, {
23
+ "featureType": "building",
24
+ "elementType": "geometry",
25
+ "stylers": {
26
+ "visibility": "on"
27
+ }
28
+ }, {
29
+ "featureType": "building",
30
+ "elementType": "geometry.topfill",
31
+ "stylers": {
32
+ "color": "#113549ff"
33
+ }
34
+ }, {
35
+ "featureType": "building",
36
+ "elementType": "geometry.sidefill",
37
+ "stylers": {
38
+ "color": "#143e56ff"
39
+ }
40
+ }, {
41
+ "featureType": "building",
42
+ "elementType": "geometry.stroke",
43
+ "stylers": {
44
+ "color": "#dadada00"
45
+ }
46
+ }, {
47
+ "featureType": "subwaystation",
48
+ "elementType": "geometry",
49
+ "stylers": {
50
+ "visibility": "on",
51
+ "color": "#113549B2"
52
+ }
53
+ }, {
54
+ "featureType": "education",
55
+ "elementType": "geometry",
56
+ "stylers": {
57
+ "visibility": "on",
58
+ "color": "#12223dff"
59
+ }
60
+ }, {
61
+ "featureType": "medical",
62
+ "elementType": "geometry",
63
+ "stylers": {
64
+ "visibility": "on",
65
+ "color": "#12223dff"
66
+ }
67
+ }, {
68
+ "featureType": "scenicspots",
69
+ "elementType": "geometry",
70
+ "stylers": {
71
+ "visibility": "on",
72
+ "color": "#12223dff"
73
+ }
74
+ }, {
75
+ "featureType": "highway",
76
+ "elementType": "geometry",
77
+ "stylers": {
78
+ "visibility": "on",
79
+ "weight": 4
80
+ }
81
+ }, {
82
+ "featureType": "highway",
83
+ "elementType": "geometry.fill",
84
+ "stylers": {
85
+ "color": "#415976ff"
86
+ }
87
+ }, {
88
+ "featureType": "highway",
89
+ "elementType": "geometry.stroke",
90
+ "stylers": {
91
+ "color": "#fed66900"
92
+ }
93
+ }, {
94
+ "featureType": "highway",
95
+ "elementType": "labels",
96
+ "stylers": {
97
+ "visibility": "on"
98
+ }
99
+ }, {
100
+ "featureType": "highway",
101
+ "elementType": "labels.text.fill",
102
+ "stylers": {
103
+ "color": "#06f5ffff"
104
+ }
105
+ }, {
106
+ "featureType": "highway",
107
+ "elementType": "labels.text.stroke",
108
+ "stylers": {
109
+ "color": "#ffffff00"
110
+ }
111
+ }, {
112
+ "featureType": "highway",
113
+ "elementType": "labels.icon",
114
+ "stylers": {
115
+ "visibility": "on"
116
+ }
117
+ }, {
118
+ "featureType": "arterial",
119
+ "elementType": "geometry",
120
+ "stylers": {
121
+ "visibility": "on",
122
+ "weight": 2
123
+ }
124
+ }, {
125
+ "featureType": "arterial",
126
+ "elementType": "geometry.fill",
127
+ "stylers": {
128
+ "color": "#415976ff"
129
+ }
130
+ }, {
131
+ "featureType": "arterial",
132
+ "elementType": "geometry.stroke",
133
+ "stylers": {
134
+ "color": "#ffeebb00"
135
+ }
136
+ }, {
137
+ "featureType": "arterial",
138
+ "elementType": "labels",
139
+ "stylers": {
140
+ "visibility": "on"
141
+ }
142
+ }, {
143
+ "featureType": "arterial",
144
+ "elementType": "labels.text.fill",
145
+ "stylers": {
146
+ "color": "#2dc4bbff"
147
+ }
148
+ }, {
149
+ "featureType": "arterial",
150
+ "elementType": "labels.text.stroke",
151
+ "stylers": {
152
+ "color": "#ffffff00"
153
+ }
154
+ }, {
155
+ "featureType": "local",
156
+ "elementType": "geometry",
157
+ "stylers": {
158
+ "visibility": "on",
159
+ "weight": 1
160
+ }
161
+ }, {
162
+ "featureType": "local",
163
+ "elementType": "geometry.fill",
164
+ "stylers": {
165
+ "color": "#415976ff"
166
+ }
167
+ }, {
168
+ "featureType": "local",
169
+ "elementType": "geometry.stroke",
170
+ "stylers": {
171
+ "color": "#ffffff00"
172
+ }
173
+ }, {
174
+ "featureType": "local",
175
+ "elementType": "labels",
176
+ "stylers": {
177
+ "visibility": "on"
178
+ }
179
+ }, {
180
+ "featureType": "local",
181
+ "elementType": "labels.text.fill",
182
+ "stylers": {
183
+ "color": "#06f5ffff"
184
+ }
185
+ }, {
186
+ "featureType": "local",
187
+ "elementType": "labels.text.stroke",
188
+ "stylers": {
189
+ "color": "#ffffffff"
190
+ }
191
+ }, {
192
+ "featureType": "railway",
193
+ "elementType": "geometry",
194
+ "stylers": {
195
+ "visibility": "off"
196
+ }
197
+ }, {
198
+ "featureType": "subway",
199
+ "elementType": "geometry",
200
+ "stylers": {
201
+ "visibility": "off",
202
+ "weight": 1
203
+ }
204
+ }, {
205
+ "featureType": "subway",
206
+ "elementType": "geometry.fill",
207
+ "stylers": {
208
+ "color": "#d8d8d8ff"
209
+ }
210
+ }, {
211
+ "featureType": "subway",
212
+ "elementType": "geometry.stroke",
213
+ "stylers": {
214
+ "color": "#ffffff00"
215
+ }
216
+ }, {
217
+ "featureType": "subway",
218
+ "elementType": "labels",
219
+ "stylers": {
220
+ "visibility": "on"
221
+ }
222
+ }, {
223
+ "featureType": "subway",
224
+ "elementType": "labels.text.fill",
225
+ "stylers": {
226
+ "color": "#979c9aff"
227
+ }
228
+ }, {
229
+ "featureType": "subway",
230
+ "elementType": "labels.text.stroke",
231
+ "stylers": {
232
+ "color": "#ffffffff"
233
+ }
234
+ }, {
235
+ "featureType": "continent",
236
+ "elementType": "labels",
237
+ "stylers": {
238
+ "visibility": "on"
239
+ }
240
+ }, {
241
+ "featureType": "continent",
242
+ "elementType": "labels.icon",
243
+ "stylers": {
244
+ "visibility": "on"
245
+ }
246
+ }, {
247
+ "featureType": "continent",
248
+ "elementType": "labels.text.fill",
249
+ "stylers": {
250
+ "color": "#2dc4bbff"
251
+ }
252
+ }, {
253
+ "featureType": "continent",
254
+ "elementType": "labels.text.stroke",
255
+ "stylers": {
256
+ "color": "#ffffff00"
257
+ }
258
+ }, {
259
+ "featureType": "city",
260
+ "elementType": "labels.icon",
261
+ "stylers": {
262
+ "visibility": "off"
263
+ }
264
+ }, {
265
+ "featureType": "city",
266
+ "elementType": "labels",
267
+ "stylers": {
268
+ "visibility": "on"
269
+ }
270
+ }, {
271
+ "featureType": "city",
272
+ "elementType": "labels.text.fill",
273
+ "stylers": {
274
+ "color": "#2dc4bbff"
275
+ }
276
+ }, {
277
+ "featureType": "city",
278
+ "elementType": "labels.text.stroke",
279
+ "stylers": {
280
+ "color": "#ffffff00"
281
+ }
282
+ }, {
283
+ "featureType": "town",
284
+ "elementType": "labels.icon",
285
+ "stylers": {
286
+ "visibility": "off"
287
+ }
288
+ }, {
289
+ "featureType": "town",
290
+ "elementType": "labels",
291
+ "stylers": {
292
+ "visibility": "off"
293
+ }
294
+ }, {
295
+ "featureType": "town",
296
+ "elementType": "labels.text.fill",
297
+ "stylers": {
298
+ "color": "#454d50ff"
299
+ }
300
+ }, {
301
+ "featureType": "town",
302
+ "elementType": "labels.text.stroke",
303
+ "stylers": {
304
+ "color": "#ffffffff"
305
+ }
306
+ }, {
307
+ "featureType": "road",
308
+ "elementType": "geometry.fill",
309
+ "stylers": {
310
+ "color": "#415976ff"
311
+ }
312
+ }, {
313
+ "featureType": "poilabel",
314
+ "elementType": "labels",
315
+ "stylers": {
316
+ "visibility": "on"
317
+ }
318
+ }, {
319
+ "featureType": "districtlabel",
320
+ "elementType": "labels",
321
+ "stylers": {
322
+ "visibility": "off"
323
+ }
324
+ }, {
325
+ "featureType": "road",
326
+ "elementType": "geometry",
327
+ "stylers": {
328
+ "visibility": "on"
329
+ }
330
+ }, {
331
+ "featureType": "road",
332
+ "elementType": "labels",
333
+ "stylers": {
334
+ "visibility": "off"
335
+ }
336
+ }, {
337
+ "featureType": "road",
338
+ "elementType": "geometry.stroke",
339
+ "stylers": {
340
+ "color": "#ffffff00"
341
+ }
342
+ }, {
343
+ "featureType": "district",
344
+ "elementType": "labels",
345
+ "stylers": {
346
+ "visibility": "on"
347
+ }
348
+ }, {
349
+ "featureType": "poilabel",
350
+ "elementType": "labels.icon",
351
+ "stylers": {
352
+ "visibility": "off"
353
+ }
354
+ }, {
355
+ "featureType": "poilabel",
356
+ "elementType": "labels.text.fill",
357
+ "stylers": {
358
+ "color": "#2dc4bbff"
359
+ }
360
+ }, {
361
+ "featureType": "poilabel",
362
+ "elementType": "labels.text.stroke",
363
+ "stylers": {
364
+ "color": "#ffffff00"
365
+ }
366
+ }, {
367
+ "featureType": "manmade",
368
+ "elementType": "geometry",
369
+ "stylers": {
370
+ "color": "#12223dff"
371
+ }
372
+ }, {
373
+ "featureType": "districtlabel",
374
+ "elementType": "labels.text.stroke",
375
+ "stylers": {
376
+ "color": "#ffffffff"
377
+ }
378
+ }, {
379
+ "featureType": "entertainment",
380
+ "elementType": "geometry",
381
+ "stylers": {
382
+ "color": "#12223dff"
383
+ }
384
+ }, {
385
+ "featureType": "shopping",
386
+ "elementType": "geometry",
387
+ "stylers": {
388
+ "color": "#12223dff"
389
+ }
390
+ }, {
391
+ "featureType": "nationalway",
392
+ "stylers": {
393
+ "curZoomRegionId": "0",
394
+ "curZoomRegion": "6,10",
395
+ "level": "6"
396
+ }
397
+ }, {
398
+ "featureType": "nationalway",
399
+ "stylers": {
400
+ "curZoomRegionId": "0",
401
+ "curZoomRegion": "6,10",
402
+ "level": "7"
403
+ }
404
+ }, {
405
+ "featureType": "nationalway",
406
+ "stylers": {
407
+ "curZoomRegionId": "0",
408
+ "curZoomRegion": "6,10",
409
+ "level": "8"
410
+ }
411
+ }, {
412
+ "featureType": "nationalway",
413
+ "stylers": {
414
+ "curZoomRegionId": "0",
415
+ "curZoomRegion": "6,10",
416
+ "level": "9"
417
+ }
418
+ }, {
419
+ "featureType": "nationalway",
420
+ "stylers": {
421
+ "curZoomRegionId": "0",
422
+ "curZoomRegion": "6,10",
423
+ "level": "10"
424
+ }
425
+ }, {
426
+ "featureType": "nationalway",
427
+ "elementType": "geometry",
428
+ "stylers": {
429
+ "visibility": "off",
430
+ "curZoomRegionId": "0",
431
+ "curZoomRegion": "6,10",
432
+ "level": "6"
433
+ }
434
+ }, {
435
+ "featureType": "nationalway",
436
+ "elementType": "geometry",
437
+ "stylers": {
438
+ "visibility": "off",
439
+ "curZoomRegionId": "0",
440
+ "curZoomRegion": "6,10",
441
+ "level": "7"
442
+ }
443
+ }, {
444
+ "featureType": "nationalway",
445
+ "elementType": "geometry",
446
+ "stylers": {
447
+ "visibility": "off",
448
+ "curZoomRegionId": "0",
449
+ "curZoomRegion": "6,10",
450
+ "level": "8"
451
+ }
452
+ }, {
453
+ "featureType": "nationalway",
454
+ "elementType": "geometry",
455
+ "stylers": {
456
+ "visibility": "off",
457
+ "curZoomRegionId": "0",
458
+ "curZoomRegion": "6,10",
459
+ "level": "9"
460
+ }
461
+ }, {
462
+ "featureType": "nationalway",
463
+ "elementType": "geometry",
464
+ "stylers": {
465
+ "visibility": "off",
466
+ "curZoomRegionId": "0",
467
+ "curZoomRegion": "6,10",
468
+ "level": "10"
469
+ }
470
+ }, {
471
+ "featureType": "nationalway",
472
+ "elementType": "labels",
473
+ "stylers": {
474
+ "visibility": "off",
475
+ "curZoomRegionId": "0",
476
+ "curZoomRegion": "6,10",
477
+ "level": "6"
478
+ }
479
+ }, {
480
+ "featureType": "nationalway",
481
+ "elementType": "labels",
482
+ "stylers": {
483
+ "visibility": "off",
484
+ "curZoomRegionId": "0",
485
+ "curZoomRegion": "6,10",
486
+ "level": "7"
487
+ }
488
+ }, {
489
+ "featureType": "nationalway",
490
+ "elementType": "labels",
491
+ "stylers": {
492
+ "visibility": "off",
493
+ "curZoomRegionId": "0",
494
+ "curZoomRegion": "6,10",
495
+ "level": "8"
496
+ }
497
+ }, {
498
+ "featureType": "nationalway",
499
+ "elementType": "labels",
500
+ "stylers": {
501
+ "visibility": "off",
502
+ "curZoomRegionId": "0",
503
+ "curZoomRegion": "6,10",
504
+ "level": "9"
505
+ }
506
+ }, {
507
+ "featureType": "nationalway",
508
+ "elementType": "labels",
509
+ "stylers": {
510
+ "visibility": "off",
511
+ "curZoomRegionId": "0",
512
+ "curZoomRegion": "6,10",
513
+ "level": "10"
514
+ }
515
+ }, {
516
+ "featureType": "cityhighway",
517
+ "stylers": {
518
+ "curZoomRegionId": "0",
519
+ "curZoomRegion": "6,9",
520
+ "level": "6"
521
+ }
522
+ }, {
523
+ "featureType": "cityhighway",
524
+ "stylers": {
525
+ "curZoomRegionId": "0",
526
+ "curZoomRegion": "6,9",
527
+ "level": "7"
528
+ }
529
+ }, {
530
+ "featureType": "cityhighway",
531
+ "stylers": {
532
+ "curZoomRegionId": "0",
533
+ "curZoomRegion": "6,9",
534
+ "level": "8"
535
+ }
536
+ }, {
537
+ "featureType": "cityhighway",
538
+ "stylers": {
539
+ "curZoomRegionId": "0",
540
+ "curZoomRegion": "6,9",
541
+ "level": "9"
542
+ }
543
+ }, {
544
+ "featureType": "cityhighway",
545
+ "elementType": "geometry",
546
+ "stylers": {
547
+ "visibility": "off",
548
+ "curZoomRegionId": "0",
549
+ "curZoomRegion": "6,9",
550
+ "level": "6"
551
+ }
552
+ }, {
553
+ "featureType": "cityhighway",
554
+ "elementType": "geometry",
555
+ "stylers": {
556
+ "visibility": "off",
557
+ "curZoomRegionId": "0",
558
+ "curZoomRegion": "6,9",
559
+ "level": "7"
560
+ }
561
+ }, {
562
+ "featureType": "cityhighway",
563
+ "elementType": "geometry",
564
+ "stylers": {
565
+ "visibility": "off",
566
+ "curZoomRegionId": "0",
567
+ "curZoomRegion": "6,9",
568
+ "level": "8"
569
+ }
570
+ }, {
571
+ "featureType": "cityhighway",
572
+ "elementType": "geometry",
573
+ "stylers": {
574
+ "visibility": "off",
575
+ "curZoomRegionId": "0",
576
+ "curZoomRegion": "6,9",
577
+ "level": "9"
578
+ }
579
+ }, {
580
+ "featureType": "cityhighway",
581
+ "elementType": "labels",
582
+ "stylers": {
583
+ "visibility": "off",
584
+ "curZoomRegionId": "0",
585
+ "curZoomRegion": "6,9",
586
+ "level": "6"
587
+ }
588
+ }, {
589
+ "featureType": "cityhighway",
590
+ "elementType": "labels",
591
+ "stylers": {
592
+ "visibility": "off",
593
+ "curZoomRegionId": "0",
594
+ "curZoomRegion": "6,9",
595
+ "level": "7"
596
+ }
597
+ }, {
598
+ "featureType": "cityhighway",
599
+ "elementType": "labels",
600
+ "stylers": {
601
+ "visibility": "off",
602
+ "curZoomRegionId": "0",
603
+ "curZoomRegion": "6,9",
604
+ "level": "8"
605
+ }
606
+ }, {
607
+ "featureType": "cityhighway",
608
+ "elementType": "labels",
609
+ "stylers": {
610
+ "visibility": "off",
611
+ "curZoomRegionId": "0",
612
+ "curZoomRegion": "6,9",
613
+ "level": "9"
614
+ }
615
+ }, {
616
+ "featureType": "subwaylabel",
617
+ "elementType": "labels",
618
+ "stylers": {
619
+ "visibility": "off"
620
+ }
621
+ }, {
622
+ "featureType": "subwaylabel",
623
+ "elementType": "labels.icon",
624
+ "stylers": {
625
+ "visibility": "off"
626
+ }
627
+ }, {
628
+ "featureType": "tertiarywaysign",
629
+ "elementType": "labels",
630
+ "stylers": {
631
+ "visibility": "off"
632
+ }
633
+ }, {
634
+ "featureType": "tertiarywaysign",
635
+ "elementType": "labels.icon",
636
+ "stylers": {
637
+ "visibility": "off"
638
+ }
639
+ }, {
640
+ "featureType": "provincialwaysign",
641
+ "elementType": "labels",
642
+ "stylers": {
643
+ "visibility": "off"
644
+ }
645
+ }, {
646
+ "featureType": "provincialwaysign",
647
+ "elementType": "labels.icon",
648
+ "stylers": {
649
+ "visibility": "off"
650
+ }
651
+ }, {
652
+ "featureType": "nationalwaysign",
653
+ "elementType": "labels",
654
+ "stylers": {
655
+ "visibility": "off"
656
+ }
657
+ }, {
658
+ "featureType": "nationalwaysign",
659
+ "elementType": "labels.icon",
660
+ "stylers": {
661
+ "visibility": "off"
662
+ }
663
+ }, {
664
+ "featureType": "highwaysign",
665
+ "elementType": "labels",
666
+ "stylers": {
667
+ "visibility": "off"
668
+ }
669
+ }, {
670
+ "featureType": "highwaysign",
671
+ "elementType": "labels.icon",
672
+ "stylers": {
673
+ "visibility": "off"
674
+ }
675
+ }, {
676
+ "featureType": "village",
677
+ "elementType": "labels",
678
+ "stylers": {
679
+ "visibility": "off"
680
+ }
681
+ }, {
682
+ "featureType": "district",
683
+ "elementType": "labels.text",
684
+ "stylers": {
685
+ "fontsize": 20
686
+ }
687
+ }, {
688
+ "featureType": "district",
689
+ "elementType": "labels.text.fill",
690
+ "stylers": {
691
+ "color": "#2dc4bbff"
692
+ }
693
+ }, {
694
+ "featureType": "district",
695
+ "elementType": "labels.text.stroke",
696
+ "stylers": {
697
+ "color": "#ffffff00"
698
+ }
699
+ }, {
700
+ "featureType": "country",
701
+ "elementType": "labels.text.fill",
702
+ "stylers": {
703
+ "color": "#2dc4bbff"
704
+ }
705
+ }, {
706
+ "featureType": "country",
707
+ "elementType": "labels.text.stroke",
708
+ "stylers": {
709
+ "color": "#ffffff00"
710
+ }
711
+ }, {
712
+ "featureType": "water",
713
+ "elementType": "labels.text.fill",
714
+ "stylers": {
715
+ "color": "#2dc4bbff"
716
+ }
717
+ }, {
718
+ "featureType": "water",
719
+ "elementType": "labels.text.stroke",
720
+ "stylers": {
721
+ "color": "#ffffff00"
722
+ }
723
+ }, {
724
+ "featureType": "cityhighway",
725
+ "elementType": "geometry.fill",
726
+ "stylers": {
727
+ "color": "#415976ff"
728
+ }
729
+ }, {
730
+ "featureType": "cityhighway",
731
+ "elementType": "geometry.stroke",
732
+ "stylers": {
733
+ "color": "#ffffff00"
734
+ }
735
+ }, {
736
+ "featureType": "tertiaryway",
737
+ "elementType": "geometry.fill",
738
+ "stylers": {
739
+ "color": "#415976ff"
740
+ }
741
+ }, {
742
+ "featureType": "tertiaryway",
743
+ "elementType": "geometry.stroke",
744
+ "stylers": {
745
+ "color": "#ffffff10"
746
+ }
747
+ }, {
748
+ "featureType": "provincialway",
749
+ "elementType": "geometry.fill",
750
+ "stylers": {
751
+ "color": "#415976ff"
752
+ }
753
+ }, {
754
+ "featureType": "provincialway",
755
+ "elementType": "geometry.stroke",
756
+ "stylers": {
757
+ "color": "#ffffff00"
758
+ }
759
+ }, {
760
+ "featureType": "nationalway",
761
+ "elementType": "geometry.fill",
762
+ "stylers": {
763
+ "color": "#415976ff"
764
+ }
765
+ }, {
766
+ "featureType": "nationalway",
767
+ "elementType": "geometry.stroke",
768
+ "stylers": {
769
+ "color": "#ffffff00"
770
+ }
771
+ }, {
772
+ "featureType": "highway",
773
+ "elementType": "labels.text",
774
+ "stylers": {
775
+ "fontsize": 20
776
+ }
777
+ }, {
778
+ "featureType": "nationalway",
779
+ "elementType": "labels.text.stroke",
780
+ "stylers": {
781
+ "color": "#ffffff00"
782
+ }
783
+ }, {
784
+ "featureType": "nationalway",
785
+ "elementType": "labels.text.fill",
786
+ "stylers": {
787
+ "color": "#06f5ffff"
788
+ }
789
+ }, {
790
+ "featureType": "nationalway",
791
+ "elementType": "labels.text",
792
+ "stylers": {
793
+ "fontsize": 20
794
+ }
795
+ }, {
796
+ "featureType": "provincialway",
797
+ "elementType": "labels.text.fill",
798
+ "stylers": {
799
+ "color": "#06f5ffff"
800
+ }
801
+ }, {
802
+ "featureType": "provincialway",
803
+ "elementType": "labels.text.stroke",
804
+ "stylers": {
805
+ "color": "#ffffff00"
806
+ }
807
+ }, {
808
+ "featureType": "provincialway",
809
+ "elementType": "labels.text",
810
+ "stylers": {
811
+ "fontsize": 20
812
+ }
813
+ }, {
814
+ "featureType": "cityhighway",
815
+ "elementType": "labels.text.fill",
816
+ "stylers": {
817
+ "color": "#06f5ffff"
818
+ }
819
+ }, {
820
+ "featureType": "cityhighway",
821
+ "elementType": "labels.text",
822
+ "stylers": {
823
+ "fontsize": 20
824
+ }
825
+ }, {
826
+ "featureType": "cityhighway",
827
+ "elementType": "labels.text.stroke",
828
+ "stylers": {
829
+ "color": "#ffffff00"
830
+ }
831
+ }, {
832
+ "featureType": "estate",
833
+ "elementType": "geometry",
834
+ "stylers": {
835
+ "color": "#12223dff"
836
+ }
837
+ }, {
838
+ "featureType": "tertiaryway",
839
+ "elementType": "labels.text.fill",
840
+ "stylers": {
841
+ "color": "#2dc4bbff"
842
+ }
843
+ }, {
844
+ "featureType": "tertiaryway",
845
+ "elementType": "labels.text.stroke",
846
+ "stylers": {
847
+ "color": "#ffffff00"
848
+ }
849
+ }, {
850
+ "featureType": "fourlevelway",
851
+ "elementType": "labels.text.fill",
852
+ "stylers": {
853
+ "color": "#2dc4bbff"
854
+ }
855
+ }, {
856
+ "featureType": "fourlevelway",
857
+ "elementType": "labels.text.stroke",
858
+ "stylers": {
859
+ "color": "#ffffff00"
860
+ }
861
+ }, {
862
+ "featureType": "scenicspotsway",
863
+ "elementType": "geometry.fill",
864
+ "stylers": {
865
+ "color": "#12223dff"
866
+ }
867
+ }, {
868
+ "featureType": "scenicspotsway",
869
+ "elementType": "geometry.stroke",
870
+ "stylers": {
871
+ "color": "#ffffff00"
872
+ }
873
+ }, {
874
+ "featureType": "universityway",
875
+ "elementType": "geometry.fill",
876
+ "stylers": {
877
+ "color": "#12223dff"
878
+ }
879
+ }, {
880
+ "featureType": "universityway",
881
+ "elementType": "geometry.stroke",
882
+ "stylers": {
883
+ "color": "#ffffff00"
884
+ }
885
+ }, {
886
+ "featureType": "vacationway",
887
+ "elementType": "geometry.fill",
888
+ "stylers": {
889
+ "color": "#12223dff"
890
+ }
891
+ }, {
892
+ "featureType": "vacationway",
893
+ "elementType": "geometry.stroke",
894
+ "stylers": {
895
+ "color": "#ffffff00"
896
+ }
897
+ }, {
898
+ "featureType": "fourlevelway",
899
+ "elementType": "geometry",
900
+ "stylers": {
901
+ "visibility": "on"
902
+ }
903
+ }, {
904
+ "featureType": "fourlevelway",
905
+ "elementType": "geometry.fill",
906
+ "stylers": {
907
+ "color": "#415976ff"
908
+ }
909
+ }, {
910
+ "featureType": "fourlevelway",
911
+ "elementType": "geometry.stroke",
912
+ "stylers": {
913
+ "color": "#ffffff00"
914
+ }
915
+ }, {
916
+ "featureType": "transportationlabel",
917
+ "elementType": "labels",
918
+ "stylers": {
919
+ "visibility": "off"
920
+ }
921
+ }, {
922
+ "featureType": "transportationlabel",
923
+ "elementType": "labels.icon",
924
+ "stylers": {
925
+ "visibility": "off"
926
+ }
927
+ }, {
928
+ "featureType": "transportationlabel",
929
+ "elementType": "labels.text.fill",
930
+ "stylers": {
931
+ "color": "#2dc4bbff"
932
+ }
933
+ }, {
934
+ "featureType": "transportationlabel",
935
+ "elementType": "labels.text.stroke",
936
+ "stylers": {
937
+ "color": "#ffffff00"
938
+ }
939
+ }, {
940
+ "featureType": "educationlabel",
941
+ "elementType": "labels",
942
+ "stylers": {
943
+ "visibility": "off"
944
+ }
945
+ }, {
946
+ "featureType": "educationlabel",
947
+ "elementType": "labels.icon",
948
+ "stylers": {
949
+ "visibility": "off"
950
+ }
951
+ }, {
952
+ "featureType": "educationlabel",
953
+ "elementType": "labels.text.fill",
954
+ "stylers": {
955
+ "color": "#2dc4bbff"
956
+ }
957
+ }, {
958
+ "featureType": "educationlabel",
959
+ "elementType": "labels.text.stroke",
960
+ "stylers": {
961
+ "color": "#ffffff00"
962
+ }
963
+ }, {
964
+ "featureType": "transportation",
965
+ "elementType": "geometry",
966
+ "stylers": {
967
+ "color": "#113549ff"
968
+ }
969
+ }, {
970
+ "featureType": "airportlabel",
971
+ "elementType": "labels.text.fill",
972
+ "stylers": {
973
+ "color": "#2dc4bbff"
974
+ }
975
+ }, {
976
+ "featureType": "airportlabel",
977
+ "elementType": "labels.text.stroke",
978
+ "stylers": {
979
+ "color": "#ffffff00"
980
+ }
981
+ }, {
982
+ "featureType": "scenicspotslabel",
983
+ "elementType": "labels.text.fill",
984
+ "stylers": {
985
+ "color": "#2dc4bbff"
986
+ }
987
+ }, {
988
+ "featureType": "scenicspotslabel",
989
+ "elementType": "labels.text.stroke",
990
+ "stylers": {
991
+ "color": "#ffffff00"
992
+ }
993
+ }, {
994
+ "featureType": "medicallabel",
995
+ "elementType": "labels.text.fill",
996
+ "stylers": {
997
+ "color": "#2dc4bbff"
998
+ }
999
+ }, {
1000
+ "featureType": "medicallabel",
1001
+ "elementType": "labels.text.stroke",
1002
+ "stylers": {
1003
+ "color": "#ffffff00"
1004
+ }
1005
+ }, {
1006
+ "featureType": "medicallabel",
1007
+ "elementType": "labels.icon",
1008
+ "stylers": {
1009
+ "visibility": "off"
1010
+ }
1011
+ }, {
1012
+ "featureType": "scenicspotslabel",
1013
+ "elementType": "labels.icon",
1014
+ "stylers": {
1015
+ "visibility": "off"
1016
+ }
1017
+ }, {
1018
+ "featureType": "airportlabel",
1019
+ "elementType": "labels.icon",
1020
+ "stylers": {
1021
+ "visibility": "off"
1022
+ }
1023
+ }, {
1024
+ "featureType": "entertainmentlabel",
1025
+ "elementType": "labels.icon",
1026
+ "stylers": {
1027
+ "visibility": "off"
1028
+ }
1029
+ }, {
1030
+ "featureType": "entertainmentlabel",
1031
+ "elementType": "labels.text.fill",
1032
+ "stylers": {
1033
+ "color": "#2dc4bbff"
1034
+ }
1035
+ }, {
1036
+ "featureType": "entertainmentlabel",
1037
+ "elementType": "labels.text.stroke",
1038
+ "stylers": {
1039
+ "color": "#ffffff00"
1040
+ }
1041
+ }, {
1042
+ "featureType": "estatelabel",
1043
+ "elementType": "labels.icon",
1044
+ "stylers": {
1045
+ "visibility": "off"
1046
+ }
1047
+ }, {
1048
+ "featureType": "estatelabel",
1049
+ "elementType": "labels.text.fill",
1050
+ "stylers": {
1051
+ "color": "#2dc4bbff"
1052
+ }
1053
+ }, {
1054
+ "featureType": "estatelabel",
1055
+ "elementType": "labels.text.stroke",
1056
+ "stylers": {
1057
+ "color": "#ffffff00"
1058
+ }
1059
+ }, {
1060
+ "featureType": "businesstowerlabel",
1061
+ "elementType": "labels.text.fill",
1062
+ "stylers": {
1063
+ "color": "#2dc4bbff"
1064
+ }
1065
+ }, {
1066
+ "featureType": "businesstowerlabel",
1067
+ "elementType": "labels.text.stroke",
1068
+ "stylers": {
1069
+ "color": "#ffffff00"
1070
+ }
1071
+ }, {
1072
+ "featureType": "businesstowerlabel",
1073
+ "elementType": "labels.icon",
1074
+ "stylers": {
1075
+ "visibility": "off"
1076
+ }
1077
+ }, {
1078
+ "featureType": "companylabel",
1079
+ "elementType": "labels.text.fill",
1080
+ "stylers": {
1081
+ "color": "#2dc4bbff"
1082
+ }
1083
+ }, {
1084
+ "featureType": "companylabel",
1085
+ "elementType": "labels.text.stroke",
1086
+ "stylers": {
1087
+ "color": "#ffffff00"
1088
+ }
1089
+ }, {
1090
+ "featureType": "companylabel",
1091
+ "elementType": "labels.icon",
1092
+ "stylers": {
1093
+ "visibility": "off"
1094
+ }
1095
+ }, {
1096
+ "featureType": "governmentlabel",
1097
+ "elementType": "labels.icon",
1098
+ "stylers": {
1099
+ "visibility": "off"
1100
+ }
1101
+ }, {
1102
+ "featureType": "governmentlabel",
1103
+ "elementType": "labels.text.fill",
1104
+ "stylers": {
1105
+ "color": "#2dc4bbff"
1106
+ }
1107
+ }, {
1108
+ "featureType": "governmentlabel",
1109
+ "elementType": "labels.text.stroke",
1110
+ "stylers": {
1111
+ "color": "#ffffff00"
1112
+ }
1113
+ }, {
1114
+ "featureType": "restaurantlabel",
1115
+ "elementType": "labels.text.fill",
1116
+ "stylers": {
1117
+ "color": "#2dc4bbff"
1118
+ }
1119
+ }, {
1120
+ "featureType": "restaurantlabel",
1121
+ "elementType": "labels.text.stroke",
1122
+ "stylers": {
1123
+ "color": "#ffffff00"
1124
+ }
1125
+ }, {
1126
+ "featureType": "restaurantlabel",
1127
+ "elementType": "labels.icon",
1128
+ "stylers": {
1129
+ "visibility": "off"
1130
+ }
1131
+ }, {
1132
+ "featureType": "hotellabel",
1133
+ "elementType": "labels.icon",
1134
+ "stylers": {
1135
+ "visibility": "off"
1136
+ }
1137
+ }, {
1138
+ "featureType": "hotellabel",
1139
+ "elementType": "labels.text.fill",
1140
+ "stylers": {
1141
+ "color": "#2dc4bbff"
1142
+ }
1143
+ }, {
1144
+ "featureType": "hotellabel",
1145
+ "elementType": "labels.text.stroke",
1146
+ "stylers": {
1147
+ "color": "#ffffff00"
1148
+ }
1149
+ }, {
1150
+ "featureType": "shoppinglabel",
1151
+ "elementType": "labels.text.fill",
1152
+ "stylers": {
1153
+ "color": "#2dc4bbff"
1154
+ }
1155
+ }, {
1156
+ "featureType": "shoppinglabel",
1157
+ "elementType": "labels.text.stroke",
1158
+ "stylers": {
1159
+ "color": "#ffffff00"
1160
+ }
1161
+ }, {
1162
+ "featureType": "shoppinglabel",
1163
+ "elementType": "labels.icon",
1164
+ "stylers": {
1165
+ "visibility": "off"
1166
+ }
1167
+ }, {
1168
+ "featureType": "lifeservicelabel",
1169
+ "elementType": "labels.text.fill",
1170
+ "stylers": {
1171
+ "color": "#2dc4bbff"
1172
+ }
1173
+ }, {
1174
+ "featureType": "lifeservicelabel",
1175
+ "elementType": "labels.text.stroke",
1176
+ "stylers": {
1177
+ "color": "#ffffff00"
1178
+ }
1179
+ }, {
1180
+ "featureType": "lifeservicelabel",
1181
+ "elementType": "labels.icon",
1182
+ "stylers": {
1183
+ "visibility": "off"
1184
+ }
1185
+ }, {
1186
+ "featureType": "carservicelabel",
1187
+ "elementType": "labels.text.fill",
1188
+ "stylers": {
1189
+ "color": "#2dc4bbff"
1190
+ }
1191
+ }, {
1192
+ "featureType": "carservicelabel",
1193
+ "elementType": "labels.text.stroke",
1194
+ "stylers": {
1195
+ "color": "#ffffff00"
1196
+ }
1197
+ }, {
1198
+ "featureType": "carservicelabel",
1199
+ "elementType": "labels.icon",
1200
+ "stylers": {
1201
+ "visibility": "off"
1202
+ }
1203
+ }, {
1204
+ "featureType": "financelabel",
1205
+ "elementType": "labels.text.fill",
1206
+ "stylers": {
1207
+ "color": "#2dc4bbff"
1208
+ }
1209
+ }, {
1210
+ "featureType": "financelabel",
1211
+ "elementType": "labels.text.stroke",
1212
+ "stylers": {
1213
+ "color": "#ffffff00"
1214
+ }
1215
+ }, {
1216
+ "featureType": "financelabel",
1217
+ "elementType": "labels.icon",
1218
+ "stylers": {
1219
+ "visibility": "off"
1220
+ }
1221
+ }, {
1222
+ "featureType": "otherlabel",
1223
+ "elementType": "labels.text.fill",
1224
+ "stylers": {
1225
+ "color": "#2dc4bbff"
1226
+ }
1227
+ }, {
1228
+ "featureType": "otherlabel",
1229
+ "elementType": "labels.text.stroke",
1230
+ "stylers": {
1231
+ "color": "#ffffff00"
1232
+ }
1233
+ }, {
1234
+ "featureType": "otherlabel",
1235
+ "elementType": "labels.icon",
1236
+ "stylers": {
1237
+ "visibility": "off"
1238
+ }
1239
+ }, {
1240
+ "featureType": "manmade",
1241
+ "elementType": "labels.text.fill",
1242
+ "stylers": {
1243
+ "color": "#2dc4bbff"
1244
+ }
1245
+ }, {
1246
+ "featureType": "manmade",
1247
+ "elementType": "labels.text.stroke",
1248
+ "stylers": {
1249
+ "color": "#ffffff00"
1250
+ }
1251
+ }, {
1252
+ "featureType": "transportation",
1253
+ "elementType": "labels.text.fill",
1254
+ "stylers": {
1255
+ "color": "#2dc4bbff"
1256
+ }
1257
+ }, {
1258
+ "featureType": "transportation",
1259
+ "elementType": "labels.text.stroke",
1260
+ "stylers": {
1261
+ "color": "#ffffff00"
1262
+ }
1263
+ }, {
1264
+ "featureType": "education",
1265
+ "elementType": "labels.text.fill",
1266
+ "stylers": {
1267
+ "color": "#2dc4bbff"
1268
+ }
1269
+ }, {
1270
+ "featureType": "education",
1271
+ "elementType": "labels.text.stroke",
1272
+ "stylers": {
1273
+ "color": "#ffffff00"
1274
+ }
1275
+ }, {
1276
+ "featureType": "medical",
1277
+ "elementType": "labels.text.fill",
1278
+ "stylers": {
1279
+ "color": "#2dc4bbff"
1280
+ }
1281
+ }, {
1282
+ "featureType": "medical",
1283
+ "elementType": "labels.text.stroke",
1284
+ "stylers": {
1285
+ "color": "#ffffff00"
1286
+ }
1287
+ }, {
1288
+ "featureType": "scenicspots",
1289
+ "elementType": "labels.text.fill",
1290
+ "stylers": {
1291
+ "color": "#2dc4bbff"
1292
+ }
1293
+ }, {
1294
+ "featureType": "scenicspots",
1295
+ "elementType": "labels.text.stroke",
1296
+ "stylers": {
1297
+ "color": "#ffffff00"
1298
+ }
1299
+ }, {
1300
+ "featureType": "water",
1301
+ "elementType": "labels",
1302
+ "stylers": {
1303
+ "visibility": "off"
1304
+ }
1305
+ }, {
1306
+ "featureType": "scenicspots",
1307
+ "elementType": "labels",
1308
+ "stylers": {
1309
+ "visibility": "off"
1310
+ }
1311
+ }, {
1312
+ "featureType": "transportation",
1313
+ "elementType": "labels",
1314
+ "stylers": {
1315
+ "visibility": "off"
1316
+ }
1317
+ }, {
1318
+ "featureType": "medical",
1319
+ "elementType": "labels",
1320
+ "stylers": {
1321
+ "visibility": "off"
1322
+ }
1323
+ }, {
1324
+ "featureType": "education",
1325
+ "elementType": "labels",
1326
+ "stylers": {
1327
+ "visibility": "off"
1328
+ }
1329
+ }, {
1330
+ "featureType": "manmade",
1331
+ "elementType": "labels",
1332
+ "stylers": {
1333
+ "visibility": "off"
1334
+ }
1335
+ }, {
1336
+ "featureType": "districtlabel",
1337
+ "elementType": "labels.icon",
1338
+ "stylers": {
1339
+ "visibility": "off"
1340
+ }
1341
+ }, {
1342
+ "featureType": "airportlabel",
1343
+ "elementType": "labels",
1344
+ "stylers": {
1345
+ "visibility": "off"
1346
+ }
1347
+ }, {
1348
+ "featureType": "scenicspotslabel",
1349
+ "elementType": "labels",
1350
+ "stylers": {
1351
+ "visibility": "off"
1352
+ }
1353
+ }, {
1354
+ "featureType": "medicallabel",
1355
+ "elementType": "labels",
1356
+ "stylers": {
1357
+ "visibility": "off"
1358
+ }
1359
+ }, {
1360
+ "featureType": "entertainmentlabel",
1361
+ "elementType": "labels",
1362
+ "stylers": {
1363
+ "visibility": "off"
1364
+ }
1365
+ }, {
1366
+ "featureType": "estatelabel",
1367
+ "elementType": "labels",
1368
+ "stylers": {
1369
+ "visibility": "off"
1370
+ }
1371
+ }, {
1372
+ "featureType": "businesstowerlabel",
1373
+ "elementType": "labels",
1374
+ "stylers": {
1375
+ "visibility": "off"
1376
+ }
1377
+ }, {
1378
+ "featureType": "companylabel",
1379
+ "elementType": "labels",
1380
+ "stylers": {
1381
+ "visibility": "off"
1382
+ }
1383
+ }, {
1384
+ "featureType": "governmentlabel",
1385
+ "elementType": "labels",
1386
+ "stylers": {
1387
+ "visibility": "off"
1388
+ }
1389
+ }, {
1390
+ "featureType": "restaurantlabel",
1391
+ "elementType": "labels",
1392
+ "stylers": {
1393
+ "visibility": "off"
1394
+ }
1395
+ }, {
1396
+ "featureType": "hotellabel",
1397
+ "elementType": "labels",
1398
+ "stylers": {
1399
+ "visibility": "off"
1400
+ }
1401
+ }, {
1402
+ "featureType": "shoppinglabel",
1403
+ "elementType": "labels",
1404
+ "stylers": {
1405
+ "visibility": "off"
1406
+ }
1407
+ }, {
1408
+ "featureType": "lifeservicelabel",
1409
+ "elementType": "labels",
1410
+ "stylers": {
1411
+ "visibility": "off"
1412
+ }
1413
+ }, {
1414
+ "featureType": "carservicelabel",
1415
+ "elementType": "labels",
1416
+ "stylers": {
1417
+ "visibility": "off"
1418
+ }
1419
+ }, {
1420
+ "featureType": "financelabel",
1421
+ "elementType": "labels",
1422
+ "stylers": {
1423
+ "visibility": "off"
1424
+ }
1425
+ }]