@antv/l7-layers 2.21.1 → 2.21.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 (393) hide show
  1. package/es/canvas/index.js +60 -113
  2. package/es/canvas/models/canvas.js +95 -135
  3. package/es/canvas/models/constants.js +1 -1
  4. package/es/citybuliding/building.js +20 -58
  5. package/es/citybuliding/models/build.js +142 -199
  6. package/es/core/BaseLayer.d.ts +1 -1
  7. package/es/core/BaseLayer.js +1113 -1412
  8. package/es/core/BaseModel.js +263 -317
  9. package/es/core/CommonStyleAttribute.js +25 -18
  10. package/es/core/LayerPickService.js +92 -141
  11. package/es/core/TextureService.js +58 -69
  12. package/es/core/constant.js +2 -2
  13. package/es/core/interface.js +5 -5
  14. package/es/core/line_trangluation.js +38 -43
  15. package/es/core/shape/Path.js +21 -12
  16. package/es/core/shape/arrow.js +50 -62
  17. package/es/core/shape/extrude.js +54 -62
  18. package/es/core/triangulation.js +192 -171
  19. package/es/core/utils.js +5 -5
  20. package/es/earth/index.js +35 -73
  21. package/es/earth/models/atmosphere.js +98 -148
  22. package/es/earth/models/base.js +148 -201
  23. package/es/earth/models/bloomsphere.js +97 -147
  24. package/es/earth/utils.js +37 -38
  25. package/es/geometry/index.js +36 -75
  26. package/es/geometry/models/billboard.js +147 -204
  27. package/es/geometry/models/index.js +1 -1
  28. package/es/geometry/models/plane.js +277 -357
  29. package/es/geometry/models/sprite.js +182 -240
  30. package/es/heatmap/index.js +72 -121
  31. package/es/heatmap/models/grid.js +66 -118
  32. package/es/heatmap/models/grid3d.js +101 -151
  33. package/es/heatmap/models/heatmap.js +398 -455
  34. package/es/heatmap/models/hexagon.js +67 -119
  35. package/es/heatmap/models/index.js +1 -1
  36. package/es/heatmap/triangulation.js +20 -20
  37. package/es/image/index.js +23 -62
  38. package/es/image/models/image.js +99 -163
  39. package/es/image/models/index.js +1 -1
  40. package/es/line/index.js +65 -106
  41. package/es/line/models/arc.js +200 -248
  42. package/es/line/models/arc_3d.js +190 -241
  43. package/es/line/models/flow.js +101 -153
  44. package/es/line/models/great_circle.js +183 -234
  45. package/es/line/models/index.js +1 -1
  46. package/es/line/models/line.js +230 -285
  47. package/es/line/models/simple_line.js +142 -192
  48. package/es/line/models/wall.js +221 -273
  49. package/es/mask/index.js +16 -53
  50. package/es/mask/models/fill.js +51 -108
  51. package/es/mask/models/index.js +1 -1
  52. package/es/plugins/DataMappingPlugin.js +205 -249
  53. package/es/plugins/DataSourcePlugin.js +64 -92
  54. package/es/plugins/FeatureScalePlugin.js +258 -302
  55. package/es/plugins/LayerAnimateStylePlugin.js +12 -22
  56. package/es/plugins/LayerMaskPlugin.js +15 -24
  57. package/es/plugins/LayerModelPlugin.js +52 -136
  58. package/es/plugins/LayerStylePlugin.js +14 -23
  59. package/es/plugins/LightingPlugin.js +26 -37
  60. package/es/plugins/MultiPassRendererPlugin.js +34 -39
  61. package/es/plugins/PixelPickingPlugin.js +129 -150
  62. package/es/plugins/RegisterStyleAttributePlugin.js +80 -96
  63. package/es/plugins/ShaderUniformPlugin.js +159 -131
  64. package/es/plugins/UpdateModelPlugin.js +16 -26
  65. package/es/plugins/UpdateStyleAttributePlugin.js +47 -65
  66. package/es/point/index.js +118 -182
  67. package/es/point/models/billboard_point.js +72 -127
  68. package/es/point/models/earthExtrude.js +170 -220
  69. package/es/point/models/earthFill.js +136 -192
  70. package/es/point/models/extrude.js +167 -217
  71. package/es/point/models/fill.js +152 -209
  72. package/es/point/models/fillImage.js +156 -211
  73. package/es/point/models/image.js +127 -180
  74. package/es/point/models/index.js +1 -1
  75. package/es/point/models/normal.js +67 -122
  76. package/es/point/models/radar.js +93 -148
  77. package/es/point/models/text.js +447 -578
  78. package/es/point/shape/extrude.js +19 -25
  79. package/es/polygon/index.js +61 -99
  80. package/es/polygon/models/extrude.js +208 -281
  81. package/es/polygon/models/extrusion.js +95 -142
  82. package/es/polygon/models/fill.js +102 -153
  83. package/es/polygon/models/index.js +1 -1
  84. package/es/polygon/models/ocean.js +139 -198
  85. package/es/polygon/models/water.js +120 -179
  86. package/es/raster/buffers/triangulation.js +13 -11
  87. package/es/raster/index.js +47 -88
  88. package/es/raster/models/index.js +1 -1
  89. package/es/raster/models/raster.js +134 -202
  90. package/es/raster/models/rasterRgb.js +134 -208
  91. package/es/raster/models/rasterTerrainRgb.js +98 -153
  92. package/es/tile/core/BaseLayer.d.ts +1 -0
  93. package/es/tile/core/BaseLayer.js +206 -282
  94. package/es/tile/core/TileDebugLayer.js +12 -46
  95. package/es/tile/interaction/getRasterData.js +24 -30
  96. package/es/tile/interaction/utils.js +15 -33
  97. package/es/tile/service/TileLayerService.js +104 -177
  98. package/es/tile/service/TilePickService.js +99 -156
  99. package/es/tile/service/TileSourceService.js +17 -26
  100. package/es/tile/tile/DebugTile.js +41 -78
  101. package/es/tile/tile/ImageTile.js +33 -66
  102. package/es/tile/tile/MaskTile.js +47 -81
  103. package/es/tile/tile/RasterRGBTile.js +40 -71
  104. package/es/tile/tile/RasterTerrainRGBTile.js +33 -66
  105. package/es/tile/tile/RasterTile.js +69 -104
  106. package/es/tile/tile/Tile.d.ts +1 -1
  107. package/es/tile/tile/Tile.js +151 -232
  108. package/es/tile/tile/VectorTile.js +77 -124
  109. package/es/tile/tile/index.js +4 -2
  110. package/es/tile/utils/constants.js +1 -1
  111. package/es/tile/utils/utils.js +2 -2
  112. package/es/utils/blend.js +52 -46
  113. package/es/utils/collision-index.js +62 -70
  114. package/es/utils/extrude_polyline.js +441 -471
  115. package/es/utils/grid-index.js +97 -123
  116. package/es/utils/identityScale.js +5 -5
  117. package/es/utils/load-image.js +15 -39
  118. package/es/utils/multiPassRender.js +7 -9
  119. package/es/utils/polylineNormal.js +40 -42
  120. package/es/utils/rampcolor_legend.js +5 -3
  121. package/es/utils/simpleLine.js +53 -66
  122. package/es/utils/symbol-layout.js +95 -117
  123. package/es/wind/index.js +28 -70
  124. package/es/wind/models/index.js +1 -1
  125. package/es/wind/models/utils.js +36 -34
  126. package/es/wind/models/wind.js +203 -260
  127. package/es/wind/models/windRender.js +258 -269
  128. package/es/wind/models/windShader.js +145 -6
  129. package/lib/canvas/index.d.ts +18 -0
  130. package/lib/canvas/index.js +64 -113
  131. package/lib/canvas/models/canvas.d.ts +23 -0
  132. package/lib/canvas/models/canvas.js +97 -136
  133. package/lib/canvas/models/constants.d.ts +2 -0
  134. package/lib/canvas/models/constants.js +1 -1
  135. package/lib/canvas/models/index.d.ts +2 -0
  136. package/lib/canvas/models/index.js +2 -2
  137. package/lib/citybuliding/building.d.ts +7 -0
  138. package/lib/citybuliding/building.js +22 -58
  139. package/lib/citybuliding/models/build.d.ts +17 -0
  140. package/lib/citybuliding/models/build.js +144 -199
  141. package/lib/core/BaseLayer.d.ts +247 -0
  142. package/lib/core/BaseLayer.js +1115 -1412
  143. package/lib/core/BaseModel.d.ts +82 -0
  144. package/lib/core/BaseModel.js +263 -315
  145. package/lib/core/CommonStyleAttribute.d.ts +20 -0
  146. package/lib/core/CommonStyleAttribute.js +25 -18
  147. package/lib/core/LayerPickService.d.ts +12 -0
  148. package/lib/core/LayerPickService.js +93 -140
  149. package/lib/core/TextureService.d.ts +15 -0
  150. package/lib/core/TextureService.js +59 -68
  151. package/lib/core/constant.d.ts +6 -0
  152. package/lib/core/constant.js +2 -2
  153. package/lib/core/interface.d.ts +282 -0
  154. package/lib/core/interface.js +5 -5
  155. package/lib/core/line_trangluation.d.ts +19 -0
  156. package/lib/core/line_trangluation.js +38 -43
  157. package/lib/core/schema.d.ts +27 -0
  158. package/lib/core/shape/Path.d.ts +39 -0
  159. package/lib/core/shape/Path.js +21 -13
  160. package/lib/core/shape/arrow.d.ts +25 -0
  161. package/lib/core/shape/arrow.js +50 -62
  162. package/lib/core/shape/extrude.d.ts +17 -0
  163. package/lib/core/shape/extrude.js +54 -62
  164. package/lib/core/triangulation.d.ts +136 -0
  165. package/lib/core/triangulation.js +194 -174
  166. package/lib/core/utils.d.ts +4 -0
  167. package/lib/core/utils.js +5 -5
  168. package/lib/earth/index.d.ts +22 -0
  169. package/lib/earth/index.js +37 -73
  170. package/lib/earth/models/atmosphere.d.ts +15 -0
  171. package/lib/earth/models/atmosphere.js +100 -148
  172. package/lib/earth/models/base.d.ts +22 -0
  173. package/lib/earth/models/base.js +150 -201
  174. package/lib/earth/models/bloomsphere.d.ts +15 -0
  175. package/lib/earth/models/bloomsphere.js +99 -147
  176. package/lib/earth/utils.d.ts +26 -0
  177. package/lib/earth/utils.js +37 -39
  178. package/lib/geometry/index.d.ts +22 -0
  179. package/lib/geometry/index.js +38 -75
  180. package/lib/geometry/models/billboard.d.ts +24 -0
  181. package/lib/geometry/models/billboard.js +149 -204
  182. package/lib/geometry/models/index.d.ts +5 -0
  183. package/lib/geometry/models/index.js +1 -1
  184. package/lib/geometry/models/plane.d.ts +43 -0
  185. package/lib/geometry/models/plane.js +280 -357
  186. package/lib/geometry/models/sprite.d.ts +48 -0
  187. package/lib/geometry/models/sprite.js +184 -240
  188. package/lib/heatmap/index.d.ts +13 -0
  189. package/lib/heatmap/index.js +74 -121
  190. package/lib/heatmap/models/grid.d.ts +15 -0
  191. package/lib/heatmap/models/grid.js +68 -118
  192. package/lib/heatmap/models/grid3d.d.ts +15 -0
  193. package/lib/heatmap/models/grid3d.js +103 -151
  194. package/lib/heatmap/models/heatmap.d.ts +27 -0
  195. package/lib/heatmap/models/heatmap.js +400 -455
  196. package/lib/heatmap/models/hexagon.d.ts +15 -0
  197. package/lib/heatmap/models/hexagon.js +69 -119
  198. package/lib/heatmap/models/index.d.ts +5 -0
  199. package/lib/heatmap/models/index.js +1 -1
  200. package/lib/heatmap/triangulation.d.ts +5 -0
  201. package/lib/heatmap/triangulation.js +20 -20
  202. package/lib/image/index.d.ts +9 -0
  203. package/lib/image/index.js +25 -62
  204. package/lib/image/models/image.d.ts +17 -0
  205. package/lib/image/models/image.js +101 -163
  206. package/lib/image/models/index.d.ts +5 -0
  207. package/lib/image/models/index.js +1 -1
  208. package/lib/index.d.ts +18 -0
  209. package/lib/index.js +17 -17
  210. package/lib/line/index.d.ts +36 -0
  211. package/lib/line/index.js +67 -106
  212. package/lib/line/models/arc.d.ts +22 -0
  213. package/lib/line/models/arc.js +202 -248
  214. package/lib/line/models/arc_3d.d.ts +22 -0
  215. package/lib/line/models/arc_3d.js +193 -241
  216. package/lib/line/models/flow.d.ts +14 -0
  217. package/lib/line/models/flow.js +103 -153
  218. package/lib/line/models/great_circle.d.ts +17 -0
  219. package/lib/line/models/great_circle.js +185 -234
  220. package/lib/line/models/index.d.ts +5 -0
  221. package/lib/line/models/index.js +1 -1
  222. package/lib/line/models/line.d.ts +27 -0
  223. package/lib/line/models/line.js +232 -285
  224. package/lib/line/models/simple_line.d.ts +19 -0
  225. package/lib/line/models/simple_line.js +144 -192
  226. package/lib/line/models/wall.d.ts +17 -0
  227. package/lib/line/models/wall.js +223 -273
  228. package/lib/mask/index.d.ts +16 -0
  229. package/lib/mask/index.js +18 -53
  230. package/lib/mask/models/fill.d.ts +18 -0
  231. package/lib/mask/models/fill.js +53 -108
  232. package/lib/mask/models/index.d.ts +5 -0
  233. package/lib/mask/models/index.js +1 -1
  234. package/lib/plugins/DataMappingPlugin.d.ts +13 -0
  235. package/lib/plugins/DataMappingPlugin.js +206 -248
  236. package/lib/plugins/DataSourcePlugin.d.ts +6 -0
  237. package/lib/plugins/DataSourcePlugin.js +65 -91
  238. package/lib/plugins/FeatureScalePlugin.d.ts +20 -0
  239. package/lib/plugins/FeatureScalePlugin.js +261 -304
  240. package/lib/plugins/LayerAnimateStylePlugin.d.ts +4 -0
  241. package/lib/plugins/LayerAnimateStylePlugin.js +13 -21
  242. package/lib/plugins/LayerMaskPlugin.d.ts +7 -0
  243. package/lib/plugins/LayerMaskPlugin.js +16 -24
  244. package/lib/plugins/LayerModelPlugin.d.ts +10 -0
  245. package/lib/plugins/LayerModelPlugin.js +53 -135
  246. package/lib/plugins/LayerStylePlugin.d.ts +7 -0
  247. package/lib/plugins/LayerStylePlugin.js +15 -23
  248. package/lib/plugins/LightingPlugin.d.ts +35 -0
  249. package/lib/plugins/LightingPlugin.js +27 -36
  250. package/lib/plugins/MultiPassRendererPlugin.d.ts +22 -0
  251. package/lib/plugins/MultiPassRendererPlugin.js +35 -38
  252. package/lib/plugins/PixelPickingPlugin.d.ts +11 -0
  253. package/lib/plugins/PixelPickingPlugin.js +130 -149
  254. package/lib/plugins/RegisterStyleAttributePlugin.d.ts +11 -0
  255. package/lib/plugins/RegisterStyleAttributePlugin.js +81 -96
  256. package/lib/plugins/ShaderUniformPlugin.d.ts +22 -0
  257. package/lib/plugins/ShaderUniformPlugin.js +160 -130
  258. package/lib/plugins/UpdateModelPlugin.d.ts +7 -0
  259. package/lib/plugins/UpdateModelPlugin.js +17 -26
  260. package/lib/plugins/UpdateStyleAttributePlugin.d.ts +9 -0
  261. package/lib/plugins/UpdateStyleAttributePlugin.js +48 -65
  262. package/lib/plugins/index.d.ts +15 -0
  263. package/lib/point/index.d.ts +33 -0
  264. package/lib/point/index.js +120 -182
  265. package/lib/point/models/billboard_point.d.ts +21 -0
  266. package/lib/point/models/billboard_point.js +74 -127
  267. package/lib/point/models/earthExtrude.d.ts +16 -0
  268. package/lib/point/models/earthExtrude.js +172 -220
  269. package/lib/point/models/earthFill.d.ts +15 -0
  270. package/lib/point/models/earthFill.js +138 -192
  271. package/lib/point/models/extrude.d.ts +16 -0
  272. package/lib/point/models/extrude.js +169 -217
  273. package/lib/point/models/fill.d.ts +31 -0
  274. package/lib/point/models/fill.js +154 -209
  275. package/lib/point/models/fillImage.d.ts +26 -0
  276. package/lib/point/models/fillImage.js +159 -211
  277. package/lib/point/models/image.d.ts +18 -0
  278. package/lib/point/models/image.js +129 -180
  279. package/lib/point/models/index.d.ts +5 -0
  280. package/lib/point/models/index.js +1 -1
  281. package/lib/point/models/normal.d.ts +22 -0
  282. package/lib/point/models/normal.js +69 -122
  283. package/lib/point/models/radar.d.ts +22 -0
  284. package/lib/point/models/radar.js +95 -148
  285. package/lib/point/models/text.d.ts +69 -0
  286. package/lib/point/models/text.js +449 -578
  287. package/lib/point/shape/extrude.d.ts +15 -0
  288. package/lib/point/shape/extrude.js +19 -25
  289. package/lib/polygon/index.d.ts +18 -0
  290. package/lib/polygon/index.js +63 -99
  291. package/lib/polygon/models/extrude.d.ts +25 -0
  292. package/lib/polygon/models/extrude.js +210 -281
  293. package/lib/polygon/models/extrusion.d.ts +24 -0
  294. package/lib/polygon/models/extrusion.js +97 -142
  295. package/lib/polygon/models/fill.d.ts +18 -0
  296. package/lib/polygon/models/fill.js +104 -153
  297. package/lib/polygon/models/index.d.ts +5 -0
  298. package/lib/polygon/models/index.js +1 -1
  299. package/lib/polygon/models/ocean.d.ts +23 -0
  300. package/lib/polygon/models/ocean.js +141 -198
  301. package/lib/polygon/models/water.d.ts +21 -0
  302. package/lib/polygon/models/water.js +122 -179
  303. package/lib/raster/buffers/triangulation.d.ts +6 -0
  304. package/lib/raster/buffers/triangulation.js +13 -11
  305. package/lib/raster/index.d.ts +11 -0
  306. package/lib/raster/index.js +49 -88
  307. package/lib/raster/models/index.d.ts +5 -0
  308. package/lib/raster/models/index.js +1 -1
  309. package/lib/raster/models/raster.d.ts +21 -0
  310. package/lib/raster/models/raster.js +136 -202
  311. package/lib/raster/models/rasterRgb.d.ts +21 -0
  312. package/lib/raster/models/rasterRgb.js +136 -208
  313. package/lib/raster/models/rasterTerrainRgb.d.ts +16 -0
  314. package/lib/raster/models/rasterTerrainRgb.js +100 -153
  315. package/lib/tile/core/BaseLayer.d.ts +48 -0
  316. package/lib/tile/core/BaseLayer.js +207 -281
  317. package/lib/tile/core/TileDebugLayer.d.ts +15 -0
  318. package/lib/tile/core/TileDebugLayer.js +14 -46
  319. package/lib/tile/interaction/getFeatureData.d.ts +0 -0
  320. package/lib/tile/interaction/getRasterData.d.ts +4 -0
  321. package/lib/tile/interaction/getRasterData.js +24 -31
  322. package/lib/tile/interaction/utils.d.ts +11 -0
  323. package/lib/tile/interaction/utils.js +15 -34
  324. package/lib/tile/interface.d.ts +29 -0
  325. package/lib/tile/service/TileLayerService.d.ts +33 -0
  326. package/lib/tile/service/TileLayerService.js +105 -177
  327. package/lib/tile/service/TilePickService.d.ts +26 -0
  328. package/lib/tile/service/TilePickService.js +100 -156
  329. package/lib/tile/service/TileSourceService.d.ts +7 -0
  330. package/lib/tile/service/TileSourceService.js +20 -29
  331. package/lib/tile/tile/DebugTile.d.ts +16 -0
  332. package/lib/tile/tile/DebugTile.js +43 -78
  333. package/lib/tile/tile/ImageTile.d.ts +14 -0
  334. package/lib/tile/tile/ImageTile.js +35 -66
  335. package/lib/tile/tile/MaskTile.d.ts +18 -0
  336. package/lib/tile/tile/MaskTile.js +49 -81
  337. package/lib/tile/tile/RasterRGBTile.d.ts +11 -0
  338. package/lib/tile/tile/RasterRGBTile.js +42 -71
  339. package/lib/tile/tile/RasterTerrainRGBTile.d.ts +14 -0
  340. package/lib/tile/tile/RasterTerrainRGBTile.js +35 -66
  341. package/lib/tile/tile/RasterTile.d.ts +18 -0
  342. package/lib/tile/tile/RasterTile.js +71 -104
  343. package/lib/tile/tile/Tile.d.ts +114 -0
  344. package/lib/tile/tile/Tile.js +152 -231
  345. package/lib/tile/tile/VectorTile.d.ts +26 -0
  346. package/lib/tile/tile/VectorTile.js +79 -124
  347. package/lib/tile/tile/index.d.ts +12 -0
  348. package/lib/tile/tile/index.js +6 -4
  349. package/lib/tile/tile/util.d.ts +5 -0
  350. package/lib/tile/utils/constants.d.ts +1 -0
  351. package/lib/tile/utils/constants.js +1 -1
  352. package/lib/tile/utils/utils.d.ts +8 -0
  353. package/lib/tile/utils/utils.js +2 -2
  354. package/lib/utils/blend.d.ts +2 -0
  355. package/lib/utils/blend.js +52 -47
  356. package/lib/utils/collision-index.d.ts +47 -0
  357. package/lib/utils/collision-index.js +64 -69
  358. package/lib/utils/extrude_polyline.d.ts +68 -0
  359. package/lib/utils/extrude_polyline.js +442 -470
  360. package/lib/utils/grid-index.d.ts +28 -0
  361. package/lib/utils/grid-index.js +97 -123
  362. package/lib/utils/identityScale.d.ts +8 -0
  363. package/lib/utils/identityScale.js +5 -5
  364. package/lib/utils/load-image.d.ts +1 -0
  365. package/lib/utils/load-image.js +15 -39
  366. package/lib/utils/multiPassRender.d.ts +16 -0
  367. package/lib/utils/multiPassRender.js +7 -10
  368. package/lib/utils/polylineNormal.d.ts +9 -0
  369. package/lib/utils/polylineNormal.js +40 -43
  370. package/lib/utils/rampcolor_legend.d.ts +6 -0
  371. package/lib/utils/rampcolor_legend.js +5 -4
  372. package/lib/utils/simpleLine.d.ts +23 -0
  373. package/lib/utils/simpleLine.js +54 -65
  374. package/lib/utils/stencil.d.ts +7 -0
  375. package/lib/utils/symbol-layout.d.ts +43 -0
  376. package/lib/utils/symbol-layout.js +95 -117
  377. package/lib/wind/index.d.ts +11 -0
  378. package/lib/wind/index.js +30 -70
  379. package/lib/wind/models/index.d.ts +5 -0
  380. package/lib/wind/models/index.js +1 -1
  381. package/lib/wind/models/utils.d.ts +19 -0
  382. package/lib/wind/models/utils.js +36 -34
  383. package/lib/wind/models/wind.d.ts +24 -0
  384. package/lib/wind/models/wind.js +205 -260
  385. package/lib/wind/models/windRender.d.ts +104 -0
  386. package/lib/wind/models/windRender.js +261 -272
  387. package/lib/wind/models/windShader.d.ts +12 -0
  388. package/lib/wind/models/windShader.js +145 -6
  389. package/package.json +16 -19
  390. package/CHANGELOG.md +0 -492
  391. package/LICENSE.md +0 -21
  392. package/es/glsl.d.ts +0 -5
  393. package/lib/glsl.d.ts +0 -5
@@ -1,14 +1,5 @@
1
1
  import _asyncToGenerator from "@babel/runtime/helpers/esm/asyncToGenerator";
2
- import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
3
- import _createClass from "@babel/runtime/helpers/esm/createClass";
4
- import _assertThisInitialized from "@babel/runtime/helpers/esm/assertThisInitialized";
5
- import _inherits from "@babel/runtime/helpers/esm/inherits";
6
- import _possibleConstructorReturn from "@babel/runtime/helpers/esm/possibleConstructorReturn";
7
- import _getPrototypeOf from "@babel/runtime/helpers/esm/getPrototypeOf";
8
2
  import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
9
- import _regeneratorRuntime from "@babel/runtime/regenerator";
10
- function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
11
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
12
3
  import { AttributeType, gl } from '@antv/l7-core';
13
4
  import { rgb2arr } from '@antv/l7-utils';
14
5
  import BaseModel from "../../core/BaseModel";
@@ -17,256 +8,214 @@ import { EARTH_RADIUS } from "../../earth/utils";
17
8
  // arc3d line layer
18
9
  import { ShaderLocation } from "../../core/CommonStyleAttribute";
19
10
  /* babel-plugin-inline-import '../shaders/arc3d/line_arc_3d_frag.glsl' */
20
- var arc3d_line_frag = "#define LineTypeSolid 0.0\n#define LineTypeDash 1.0\n#define Animate 0.0\n#define LineTexture 1.0\n\nuniform sampler2D u_texture;\n\nlayout(std140) uniform commonUniorm {\n vec4 u_animate: [ 1., 2., 1.0, 0.2 ];\n vec4 u_dash_array: [10.0, 5., 0, 0];\n vec4 u_sourceColor;\n vec4 u_targetColor;\n vec2 u_textSize;\n float u_globel;\n float u_globel_radius;\n float u_global_height: 10;\n float segmentNumber;\n float u_line_type: 0.0;\n float u_icon_step: 100;\n float u_line_texture: 0.0;\n float u_textureBlend;\n float u_time;\n float u_linearColor: 0.0;\n};\n\n// varying vec2 v_normal;\nin vec4 v_dash_array;\nin vec4 v_color;\nin vec4 v_line_data;\nin float v_segmentIndex;\nin vec2 v_iconMapUV;\n\nout vec4 outputColor;\n\n#pragma include \"picking\"\n\nvoid main() {\n float animateSpeed = 0.0; // \u8FD0\u52A8\u901F\u5EA6\n float d_distance_ratio = v_line_data.g; // \u5F53\u524D\u70B9\u4F4D\u8DDD\u79BB\u5360\u7EBF\u603B\u957F\u7684\u6BD4\u4F8B\n outputColor = v_color;\n\n if(u_line_type == LineTypeDash) {\n float flag = 0.;\n float dashLength = mod(d_distance_ratio, v_dash_array.x + v_dash_array.y + v_dash_array.z + v_dash_array.w);\n if(dashLength < v_dash_array.x || (dashLength > (v_dash_array.x + v_dash_array.y) && dashLength < v_dash_array.x + v_dash_array.y + v_dash_array.z)) {\n flag = 1.;\n }\n outputColor.a *=flag;\n }\n\n if(u_animate.x == Animate && u_line_texture != LineTexture) {\n animateSpeed = u_time / u_animate.y;\n float alpha =1.0 - fract( mod(1.0- d_distance_ratio, u_animate.z)* (1.0/ u_animate.z) + u_time / u_animate.y);\n\n alpha = (alpha + u_animate.w -1.0) / u_animate.w;\n // alpha = smoothstep(0., 1., alpha);\n alpha = clamp(alpha, 0.0, 1.0);\n outputColor.a *= alpha;\n\n // u_animate \n // x enable\n // y duration\n // z interval\n // w trailLength\n }\n\n if(u_line_texture == LineTexture && u_line_type != LineTypeDash) { // while load texture\n // float arcRadio = smoothstep( 0.0, 1.0, (v_segmentIndex / segmentNumber));\n float arcRadio = v_segmentIndex / (segmentNumber - 1.0);\n float count = v_line_data.b; // // \u8D34\u56FE\u5728\u5F27\u7EBF\u4E0A\u91CD\u590D\u7684\u6570\u91CF\n\n float time = 0.0;\n if(u_animate.x == Animate) {\n time = u_time / u_animate.y;\n }\n float redioCount = arcRadio * count;\n\n float u = fract(redioCount - time);\n\n float v = v_line_data.a; // \u7EBF\u56FE\u5C42\u8D34\u56FE\u90E8\u5206\u7684 v \u5750\u6807\u503C\n vec2 uv= v_iconMapUV / u_textSize + vec2(u, v) / u_textSize * 64.;\n vec4 pattern = texture(SAMPLER_2D(u_texture), uv);\n\n if(u_animate.x == Animate) {\n float currentPlane = floor(redioCount - time);\n float textureStep = floor(count * u_animate.z);\n float a = mod(currentPlane, textureStep);\n if(a < textureStep - 1.0) {\n pattern = vec4(0.0);\n }\n }\n\n if(u_textureBlend == 0.0) { // normal\n pattern.a = 0.0;\n outputColor = filterColor(outputColor + pattern);\n } else { // replace\n pattern.a *= v_color.a;\n if(outputColor.a <= 0.0) {\n pattern.a = 0.0;\n discard;\n } else {\n outputColor = filterColor(pattern);\n }\n }\n\n } else {\n outputColor = filterColor(outputColor);\n }\n}\n";
11
+ const arc3d_line_frag = "#define LineTypeSolid 0.0\n#define LineTypeDash 1.0\n#define Animate 0.0\n#define LineTexture 1.0\n\nuniform sampler2D u_texture;\n\nlayout(std140) uniform commonUniorm {\n vec4 u_animate: [ 1., 2., 1.0, 0.2 ];\n vec4 u_dash_array: [10.0, 5., 0, 0];\n vec4 u_sourceColor;\n vec4 u_targetColor;\n vec2 u_textSize;\n float u_globel;\n float u_globel_radius;\n float u_global_height: 10;\n float segmentNumber;\n float u_line_type: 0.0;\n float u_icon_step: 100;\n float u_line_texture: 0.0;\n float u_textureBlend;\n float u_time;\n float u_linearColor: 0.0;\n};\n\n// varying vec2 v_normal;\nin vec4 v_dash_array;\nin vec4 v_color;\nin vec4 v_line_data;\nin float v_segmentIndex;\nin vec2 v_iconMapUV;\n\nout vec4 outputColor;\n\n#pragma include \"picking\"\n\nvoid main() {\n float animateSpeed = 0.0; // \u8FD0\u52A8\u901F\u5EA6\n float d_distance_ratio = v_line_data.g; // \u5F53\u524D\u70B9\u4F4D\u8DDD\u79BB\u5360\u7EBF\u603B\u957F\u7684\u6BD4\u4F8B\n outputColor = v_color;\n\n if(u_line_type == LineTypeDash) {\n float flag = 0.;\n float dashLength = mod(d_distance_ratio, v_dash_array.x + v_dash_array.y + v_dash_array.z + v_dash_array.w);\n if(dashLength < v_dash_array.x || (dashLength > (v_dash_array.x + v_dash_array.y) && dashLength < v_dash_array.x + v_dash_array.y + v_dash_array.z)) {\n flag = 1.;\n }\n outputColor.a *=flag;\n }\n\n if(u_animate.x == Animate && u_line_texture != LineTexture) {\n animateSpeed = u_time / u_animate.y;\n float alpha =1.0 - fract( mod(1.0- d_distance_ratio, u_animate.z)* (1.0/ u_animate.z) + u_time / u_animate.y);\n\n alpha = (alpha + u_animate.w -1.0) / u_animate.w;\n // alpha = smoothstep(0., 1., alpha);\n alpha = clamp(alpha, 0.0, 1.0);\n outputColor.a *= alpha;\n\n // u_animate \n // x enable\n // y duration\n // z interval\n // w trailLength\n }\n\n if(u_line_texture == LineTexture && u_line_type != LineTypeDash) { // while load texture\n // float arcRadio = smoothstep( 0.0, 1.0, (v_segmentIndex / segmentNumber));\n float arcRadio = v_segmentIndex / (segmentNumber - 1.0);\n float count = v_line_data.b; // // \u8D34\u56FE\u5728\u5F27\u7EBF\u4E0A\u91CD\u590D\u7684\u6570\u91CF\n\n float time = 0.0;\n if(u_animate.x == Animate) {\n time = u_time / u_animate.y;\n }\n float redioCount = arcRadio * count;\n\n float u = fract(redioCount - time);\n\n float v = v_line_data.a; // \u7EBF\u56FE\u5C42\u8D34\u56FE\u90E8\u5206\u7684 v \u5750\u6807\u503C\n vec2 uv= v_iconMapUV / u_textSize + vec2(u, v) / u_textSize * 64.;\n vec4 pattern = texture(SAMPLER_2D(u_texture), uv);\n\n if(u_animate.x == Animate) {\n float currentPlane = floor(redioCount - time);\n float textureStep = floor(count * u_animate.z);\n float a = mod(currentPlane, textureStep);\n if(a < textureStep - 1.0) {\n pattern = vec4(0.0);\n }\n }\n\n if(u_textureBlend == 0.0) { // normal\n pattern.a = 0.0;\n outputColor = filterColor(outputColor + pattern);\n } else { // replace\n pattern.a *= v_color.a;\n if(outputColor.a <= 0.0) {\n pattern.a = 0.0;\n discard;\n } else {\n outputColor = filterColor(pattern);\n }\n }\n\n } else {\n outputColor = filterColor(outputColor);\n }\n}\n";
21
12
  /* babel-plugin-inline-import '../shaders/arc3d/line_arc_3d_vert.glsl' */
22
- var arc3d_line_vert = "#define LineTypeSolid 0.0\n#define LineTypeDash 1.0\n#define Animate 0.0\n#define LineTexture 1.0\nlayout(location = 0) in vec3 a_Position;\nlayout(location = 1) in vec4 a_Color;\nlayout(location = 9) in float a_Size;\nlayout(location = 12) in vec4 a_Instance;\nlayout(location = 14) in vec2 a_iconMapUV;\n\n\nlayout(std140) uniform commonUniorm {\n vec4 u_animate: [ 1., 2., 1.0, 0.2 ];\n vec4 u_dash_array: [10.0, 5., 0, 0];\n vec4 u_sourceColor;\n vec4 u_targetColor;\n vec2 u_textSize;\n float u_globel;\n float u_globel_radius;\n float u_global_height: 10;\n float segmentNumber;\n float u_line_type: 0.0;\n float u_icon_step: 100;\n float u_line_texture: 0.0;\n float u_textureBlend;\n float u_time;\n float u_linearColor: 0.0;\n};\nout vec4 v_color;\nout vec4 v_dash_array;\nout float v_segmentIndex;\nout vec2 v_iconMapUV;\nout vec4 v_line_data;\n\n#pragma include \"projection\"\n#pragma include \"project\"\n#pragma include \"picking\"\n\nfloat maps (float value, float start1, float stop1, float start2, float stop2) {\n return start2 + (stop2 - start2) * ((value - start1) / (stop1 - start1));\n}\n\nfloat getSegmentRatio(float index) {\n return smoothstep(0.0, 1.0, index / (segmentNumber - 1.0));\n}\n\nfloat paraboloid(vec2 source, vec2 target, float ratio) {\n vec2 x = mix(source, target, ratio);\n vec2 center = mix(source, target, 0.5);\n float dSourceCenter = distance(source, center);\n float dXCenter = distance(x, center);\n return (dSourceCenter + dXCenter) * (dSourceCenter - dXCenter);\n}\n\nvec3 getPos(vec2 source, vec2 target, float segmentRatio) {\n float vertex_height = paraboloid(source, target, segmentRatio);\n\n return vec3(\n mix(source, target, segmentRatio),\n sqrt(max(0.0, vertex_height))\n );\n}\nvec2 getExtrusionOffset(vec2 line_clipspace, float offset_direction) {\n // normalized direction of the line\n vec2 dir_screenspace = normalize(line_clipspace);\n // rotate by 90 degrees\n dir_screenspace = vec2(-dir_screenspace.y, dir_screenspace.x);\n\n vec2 offset = dir_screenspace * offset_direction * setPickingSize(a_Size) / 2.0;\n\n return offset;\n}\nvec2 getNormal(vec2 line_clipspace, float offset_direction) {\n // normalized direction of the line\n vec2 dir_screenspace = normalize(line_clipspace);\n // rotate by 90 degrees\n dir_screenspace = vec2(-dir_screenspace.y, dir_screenspace.x);\n return reverse_offset_normal(vec3(dir_screenspace,1.0)).xy * sign(offset_direction);\n}\n\nfloat torad(float deg) {\n return (deg / 180.0) * acos(-1.0);\n}\n\nvec3 lglt2xyz(vec2 lnglat) {\n float pi = 3.1415926;\n // + Math.PI/2 \u662F\u4E3A\u4E86\u5BF9\u9F50\u5750\u6807\n float lng = torad(lnglat.x) + pi / 2.0;\n float lat = torad(lnglat.y);\n\n // \u624B\u52A8\u589E\u52A0\u4E00\u4E9B\u504F\u79FB\uFF0C\u51CF\u8F7B\u9762\u7684\u51B2\u7A81\n float radius = u_globel_radius;\n\n float z = radius * cos(lat) * cos(lng);\n float x = radius * cos(lat) * sin(lng);\n float y = radius * sin(lat);\n return vec3(x, y, z);\n}\n\nvoid main() {\n //vs\u4E2D\u8BA1\u7B97\u6E10\u53D8\u8272\n if(u_linearColor==1.0){\n float d_segmentIndex = a_Position.x + 1.0; // \u5F53\u524D\u9876\u70B9\u5728\u5F27\u7EBF\u4E2D\u6240\u5904\u7684\u5206\u6BB5\u4F4D\u7F6E\n v_color = mix(u_sourceColor, u_targetColor, d_segmentIndex/segmentNumber);\n }\n else{\n v_color = a_Color;\n }\n v_color.a = v_color.a * opacity;\n vec2 source = project_position(vec4(a_Instance.rg, 0, 0)).xy;\n vec2 target = project_position(vec4(a_Instance.ba, 0, 0)).xy;\n float segmentIndex = a_Position.x;\n float segmentRatio = getSegmentRatio(segmentIndex);\n float indexDir = mix(-1.0, 1.0, step(segmentIndex, 0.0));\n\n float d_distance_ratio;\n if(u_line_type == LineTypeDash) {\n d_distance_ratio = segmentIndex / segmentNumber;\n vec2 s = source;\n vec2 t = target;\n \n if(u_CoordinateSystem == COORDINATE_SYSTEM_P20_2) { // gaode2.x\n s = unProjCustomCoord(source);\n t = unProjCustomCoord(target);\n }\n float total_Distance = pixelDistance(s, t) / 2.0 * PI;\n v_dash_array = pow(2.0, 20.0 - u_Zoom) * u_dash_array / (total_Distance / segmentNumber * segmentIndex);\n }\n if(u_animate.x == Animate) {\n d_distance_ratio = segmentIndex / segmentNumber;\n }\n v_line_data.g = d_distance_ratio; // \u5F53\u524D\u70B9\u4F4D\u8DDD\u79BB\u5360\u7EBF\u603B\u957F\u7684\u6BD4\u4F8B\n\n float nextSegmentRatio = getSegmentRatio(segmentIndex + indexDir);\n vec3 curr = getPos(source, target, segmentRatio);\n vec3 next = getPos(source, target, nextSegmentRatio);\n vec2 offset = getExtrusionOffset((next.xy - curr.xy) * indexDir, a_Position.y);\n // v_normal = getNormal((next.xy - curr.xy) * indexDir, a_Position.y);\n\n\n v_segmentIndex = a_Position.x;\n if(LineTexture == u_line_texture && u_line_type != LineTypeDash) { // \u5F00\u542F\u8D34\u56FE\u6A21\u5F0F \n\n float arcDistrance = length(source - target);\n float pixelLen = project_pixel_texture(u_icon_step);\n v_line_data.b = floor(arcDistrance/pixelLen); // \u8D34\u56FE\u5728\u5F27\u7EBF\u4E0A\u91CD\u590D\u7684\u6570\u91CF\n\n vec2 projectOffset = project_pixel(offset);\n float lineOffsetWidth = length(projectOffset + projectOffset * sign(a_Position.y)); // \u7EBF\u6A2A\u5411\u504F\u79FB\u7684\u8DDD\u79BB\n float linePixelSize = project_pixel(a_Size); // \u5B9A\u70B9\u4F4D\u7F6E\u504F\u79FB\uFF0C\u6309\u5730\u56FE\u7B49\u7EA7\u7F29\u653E\u540E\u7684\u8DDD\u79BB\n v_line_data.a = lineOffsetWidth/linePixelSize; // \u7EBF\u56FE\u5C42\u8D34\u56FE\u90E8\u5206\u7684 v \u5750\u6807\u503C\n\n v_iconMapUV = a_iconMapUV;\n }\n\n\n gl_Position = project_common_position_to_clipspace_v2(vec4(curr.xy + project_pixel(offset), curr.z * thetaOffset, 1.0));\n\n // \u5730\u7403\u6A21\u5F0F\n if(u_globel > 0.0) {\n vec3 startLngLat = lglt2xyz(a_Instance.rg);\n vec3 endLngLat = lglt2xyz(a_Instance.ba);\n float globalRadius = length(startLngLat);\n\n vec3 lineDir = normalize(endLngLat - startLngLat);\n vec3 midPointDir = normalize((startLngLat + endLngLat)/2.0);\n\n // \u7EBF\u7684\u504F\u79FB\n vec3 lnglatOffset = cross(lineDir, midPointDir) * a_Position.y;\n // \u8BA1\u7B97\u8D77\u59CB\u70B9\u548C\u7EC8\u6B62\u70B9\u7684\u8DDD\u79BB\n float lnglatLength = length(a_Instance.rg - a_Instance.ba)/50.0;\n // \u8BA1\u7B97\u98DE\u7EBF\u5404\u4E2A\u8282\u70B9\u76F8\u5E94\u7684\u9AD8\u5EA6\n float lineHeight = u_global_height * (-4.0*segmentRatio*segmentRatio + 4.0 * segmentRatio) * lnglatLength;\n // \u5730\u7403\u70B9\u4F4D\n vec3 globalPoint = normalize(mix(startLngLat, endLngLat, segmentRatio)) * (globalRadius + lineHeight) + lnglatOffset * a_Size;\n \n gl_Position = u_ViewProjectionMatrix * vec4(globalPoint, 1.0);\n }\n \n\n setPickingColor(a_PickingColor);\n}\n";
23
- var lineStyleObj = {
13
+ const arc3d_line_vert = "#define LineTypeSolid 0.0\n#define LineTypeDash 1.0\n#define Animate 0.0\n#define LineTexture 1.0\nlayout(location = 0) in vec3 a_Position;\nlayout(location = 1) in vec4 a_Color;\nlayout(location = 9) in float a_Size;\nlayout(location = 12) in vec4 a_Instance;\nlayout(location = 14) in vec2 a_iconMapUV;\n\n\nlayout(std140) uniform commonUniorm {\n vec4 u_animate: [ 1., 2., 1.0, 0.2 ];\n vec4 u_dash_array: [10.0, 5., 0, 0];\n vec4 u_sourceColor;\n vec4 u_targetColor;\n vec2 u_textSize;\n float u_globel;\n float u_globel_radius;\n float u_global_height: 10;\n float segmentNumber;\n float u_line_type: 0.0;\n float u_icon_step: 100;\n float u_line_texture: 0.0;\n float u_textureBlend;\n float u_time;\n float u_linearColor: 0.0;\n};\nout vec4 v_color;\nout vec4 v_dash_array;\nout float v_segmentIndex;\nout vec2 v_iconMapUV;\nout vec4 v_line_data;\n\n#pragma include \"projection\"\n#pragma include \"project\"\n#pragma include \"picking\"\n\nfloat maps (float value, float start1, float stop1, float start2, float stop2) {\n return start2 + (stop2 - start2) * ((value - start1) / (stop1 - start1));\n}\n\nfloat getSegmentRatio(float index) {\n return smoothstep(0.0, 1.0, index / (segmentNumber - 1.0));\n}\n\nfloat paraboloid(vec2 source, vec2 target, float ratio) {\n vec2 x = mix(source, target, ratio);\n vec2 center = mix(source, target, 0.5);\n float dSourceCenter = distance(source, center);\n float dXCenter = distance(x, center);\n return (dSourceCenter + dXCenter) * (dSourceCenter - dXCenter);\n}\n\nvec3 getPos(vec2 source, vec2 target, float segmentRatio) {\n float vertex_height = paraboloid(source, target, segmentRatio);\n\n return vec3(\n mix(source, target, segmentRatio),\n sqrt(max(0.0, vertex_height))\n );\n}\nvec2 getExtrusionOffset(vec2 line_clipspace, float offset_direction) {\n // normalized direction of the line\n vec2 dir_screenspace = normalize(line_clipspace);\n // rotate by 90 degrees\n dir_screenspace = vec2(-dir_screenspace.y, dir_screenspace.x);\n\n vec2 offset = dir_screenspace * offset_direction * setPickingSize(a_Size) / 2.0;\n\n return offset;\n}\nvec2 getNormal(vec2 line_clipspace, float offset_direction) {\n // normalized direction of the line\n vec2 dir_screenspace = normalize(line_clipspace);\n // rotate by 90 degrees\n dir_screenspace = vec2(-dir_screenspace.y, dir_screenspace.x);\n return reverse_offset_normal(vec3(dir_screenspace,1.0)).xy * sign(offset_direction);\n}\n\nfloat torad(float deg) {\n return (deg / 180.0) * acos(-1.0);\n}\n\nvec3 lglt2xyz(vec2 lnglat) {\n float pi = 3.1415926;\n // + Math.PI/2 \u662F\u4E3A\u4E86\u5BF9\u9F50\u5750\u6807\n float lng = torad(lnglat.x) + pi / 2.0;\n float lat = torad(lnglat.y);\n\n // \u624B\u52A8\u589E\u52A0\u4E00\u4E9B\u504F\u79FB\uFF0C\u51CF\u8F7B\u9762\u7684\u51B2\u7A81\n float radius = u_globel_radius;\n\n float z = radius * cos(lat) * cos(lng);\n float x = radius * cos(lat) * sin(lng);\n float y = radius * sin(lat);\n return vec3(x, y, z);\n}\n\nvoid main() {\n //vs\u4E2D\u8BA1\u7B97\u6E10\u53D8\u8272\n if(u_linearColor==1.0){\n float d_segmentIndex = a_Position.x + 1.0; // \u5F53\u524D\u9876\u70B9\u5728\u5F27\u7EBF\u4E2D\u6240\u5904\u7684\u5206\u6BB5\u4F4D\u7F6E\n v_color = mix(u_sourceColor, u_targetColor, d_segmentIndex/segmentNumber);\n }\n else{\n v_color = a_Color;\n }\n v_color.a = v_color.a * opacity;\n vec2 source = project_position(vec4(a_Instance.rg, 0, 0)).xy;\n vec2 target = project_position(vec4(a_Instance.ba, 0, 0)).xy;\n float segmentIndex = a_Position.x;\n float segmentRatio = getSegmentRatio(segmentIndex);\n float indexDir = mix(-1.0, 1.0, step(segmentIndex, 0.0));\n\n float d_distance_ratio;\n if(u_line_type == LineTypeDash) {\n d_distance_ratio = segmentIndex / segmentNumber;\n vec2 s = source;\n vec2 t = target;\n \n if(u_CoordinateSystem == COORDINATE_SYSTEM_P20_2) { // gaode2.x\n s = unProjCustomCoord(source);\n t = unProjCustomCoord(target);\n }\n float total_Distance = pixelDistance(s, t) / 2.0 * PI;\n v_dash_array = pow(2.0, 20.0 - u_Zoom) * u_dash_array / (total_Distance / segmentNumber * segmentIndex);\n }\n if(u_animate.x == Animate) {\n d_distance_ratio = segmentIndex / segmentNumber;\n }\n v_line_data.g = d_distance_ratio; // \u5F53\u524D\u70B9\u4F4D\u8DDD\u79BB\u5360\u7EBF\u603B\u957F\u7684\u6BD4\u4F8B\n\n float nextSegmentRatio = getSegmentRatio(segmentIndex + indexDir);\n vec3 curr = getPos(source, target, segmentRatio);\n vec3 next = getPos(source, target, nextSegmentRatio);\n vec2 offset = getExtrusionOffset((next.xy - curr.xy) * indexDir, a_Position.y);\n // v_normal = getNormal((next.xy - curr.xy) * indexDir, a_Position.y);\n\n\n v_segmentIndex = a_Position.x;\n if(LineTexture == u_line_texture && u_line_type != LineTypeDash) { // \u5F00\u542F\u8D34\u56FE\u6A21\u5F0F \n\n float arcDistrance = length(source - target);\n float pixelLen = project_pixel_texture(u_icon_step);\n v_line_data.b = floor(arcDistrance/pixelLen); // \u8D34\u56FE\u5728\u5F27\u7EBF\u4E0A\u91CD\u590D\u7684\u6570\u91CF\n\n vec2 projectOffset = project_pixel(offset);\n float lineOffsetWidth = length(projectOffset + projectOffset * sign(a_Position.y)); // \u7EBF\u6A2A\u5411\u504F\u79FB\u7684\u8DDD\u79BB\n float linePixelSize = project_pixel(a_Size); // \u5B9A\u70B9\u4F4D\u7F6E\u504F\u79FB\uFF0C\u6309\u5730\u56FE\u7B49\u7EA7\u7F29\u653E\u540E\u7684\u8DDD\u79BB\n v_line_data.a = lineOffsetWidth/linePixelSize; // \u7EBF\u56FE\u5C42\u8D34\u56FE\u90E8\u5206\u7684 v \u5750\u6807\u503C\n\n v_iconMapUV = a_iconMapUV;\n }\n\n\n gl_Position = project_common_position_to_clipspace_v2(vec4(curr.xy + project_pixel(offset), curr.z * thetaOffset, 1.0));\n\n // \u5730\u7403\u6A21\u5F0F\n if(u_globel > 0.0) {\n vec3 startLngLat = lglt2xyz(a_Instance.rg);\n vec3 endLngLat = lglt2xyz(a_Instance.ba);\n float globalRadius = length(startLngLat);\n\n vec3 lineDir = normalize(endLngLat - startLngLat);\n vec3 midPointDir = normalize((startLngLat + endLngLat)/2.0);\n\n // \u7EBF\u7684\u504F\u79FB\n vec3 lnglatOffset = cross(lineDir, midPointDir) * a_Position.y;\n // \u8BA1\u7B97\u8D77\u59CB\u70B9\u548C\u7EC8\u6B62\u70B9\u7684\u8DDD\u79BB\n float lnglatLength = length(a_Instance.rg - a_Instance.ba)/50.0;\n // \u8BA1\u7B97\u98DE\u7EBF\u5404\u4E2A\u8282\u70B9\u76F8\u5E94\u7684\u9AD8\u5EA6\n float lineHeight = u_global_height * (-4.0*segmentRatio*segmentRatio + 4.0 * segmentRatio) * lnglatLength;\n // \u5730\u7403\u70B9\u4F4D\n vec3 globalPoint = normalize(mix(startLngLat, endLngLat, segmentRatio)) * (globalRadius + lineHeight) + lnglatOffset * a_Size;\n \n gl_Position = u_ViewProjectionMatrix * vec4(globalPoint, 1.0);\n }\n \n\n setPickingColor(a_PickingColor);\n}\n";
14
+ const lineStyleObj = {
24
15
  solid: 0.0,
25
16
  dash: 1.0
26
17
  };
27
- var Arc3DModel = /*#__PURE__*/function (_BaseModel) {
28
- _inherits(Arc3DModel, _BaseModel);
29
- var _super = _createSuper(Arc3DModel);
30
- function Arc3DModel() {
31
- var _this;
32
- _classCallCheck(this, Arc3DModel);
33
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
34
- args[_key] = arguments[_key];
35
- }
36
- _this = _super.call.apply(_super, [this].concat(args));
37
- _defineProperty(_assertThisInitialized(_this), "updateTexture", function () {
38
- var createTexture2D = _this.rendererService.createTexture2D;
39
- if (_this.texture) {
40
- _this.texture.update({
41
- data: _this.iconService.getCanvas()
18
+ export default class Arc3DModel extends BaseModel {
19
+ constructor(...args) {
20
+ super(...args);
21
+ _defineProperty(this, "texture", void 0);
22
+ _defineProperty(this, "updateTexture", () => {
23
+ const {
24
+ createTexture2D
25
+ } = this.rendererService;
26
+ if (this.texture) {
27
+ this.texture.update({
28
+ data: this.iconService.getCanvas()
42
29
  });
43
- _this.layer.render();
30
+ this.layer.render();
44
31
  return;
45
32
  }
46
- _this.texture = createTexture2D({
47
- data: _this.iconService.getCanvas(),
33
+ this.texture = createTexture2D({
34
+ data: this.iconService.getCanvas(),
48
35
  mag: gl.NEAREST,
49
36
  min: gl.NEAREST,
50
37
  premultiplyAlpha: false,
51
38
  width: 1024,
52
- height: _this.iconService.canvasHeight || 128
39
+ height: this.iconService.canvasHeight || 128
53
40
  });
54
- _this.textures = [_this.texture];
41
+ this.textures = [this.texture];
55
42
  });
56
- return _this;
57
43
  }
58
- _createClass(Arc3DModel, [{
59
- key: "getCommonUniformsInfo",
60
- value:
61
- // public enableShaderEncodeStyles = ['opacity'];
62
- function getCommonUniformsInfo() {
63
- var _ref = this.layer.getLayerConfig(),
64
- sourceColor = _ref.sourceColor,
65
- targetColor = _ref.targetColor,
66
- _ref$textureBlend = _ref.textureBlend,
67
- textureBlend = _ref$textureBlend === void 0 ? 'normal' : _ref$textureBlend,
68
- _ref$lineType = _ref.lineType,
69
- lineType = _ref$lineType === void 0 ? 'solid' : _ref$lineType,
70
- _ref$dashArray = _ref.dashArray,
71
- dashArray = _ref$dashArray === void 0 ? [10, 5] : _ref$dashArray,
72
- _ref$lineTexture = _ref.lineTexture,
73
- lineTexture = _ref$lineTexture === void 0 ? false : _ref$lineTexture,
74
- _ref$iconStep = _ref.iconStep,
75
- iconStep = _ref$iconStep === void 0 ? 100 : _ref$iconStep,
76
- _ref$segmentNumber = _ref.segmentNumber,
77
- segmentNumber = _ref$segmentNumber === void 0 ? 30 : _ref$segmentNumber,
78
- _ref$globalArcHeight = _ref.globalArcHeight,
79
- globalArcHeight = _ref$globalArcHeight === void 0 ? 10 : _ref$globalArcHeight;
80
- var _ref2 = this.layer.getLayerConfig(),
81
- animateOption = _ref2.animateOption;
82
- if (dashArray.length === 2) {
83
- dashArray.push(0, 0);
84
- }
85
- // 转化渐变色
86
- var useLinearColor = 0; // 默认不生效
87
- var sourceColorArr = [0, 0, 0, 0];
88
- var targetColorArr = [0, 0, 0, 0];
89
- if (sourceColor && targetColor) {
90
- sourceColorArr = rgb2arr(sourceColor);
91
- targetColorArr = rgb2arr(targetColor);
92
- useLinearColor = 1;
93
- }
94
- if (this.rendererService.getDirty()) {
95
- var _this$texture;
96
- (_this$texture = this.texture) === null || _this$texture === void 0 || _this$texture.bind();
97
- }
98
- var commonOptions = {
99
- u_animate: this.animateOption2Array(animateOption),
100
- u_dash_array: dashArray,
101
- u_sourceColor: sourceColorArr,
102
- u_targetColor: targetColorArr,
103
- u_textSize: [1024, this.iconService.canvasHeight || 128],
104
- u_globel: this.mapService.version === 'GLOBEL' ? 1 : 0,
105
- u_globel_radius: EARTH_RADIUS,
106
- // 地球半径
107
- u_global_height: globalArcHeight,
108
- segmentNumber: segmentNumber,
109
- u_line_type: lineStyleObj[lineType] || 0.0,
110
- u_icon_step: iconStep,
111
- u_line_texture: lineTexture ? 1.0 : 0.0,
112
- // 传入线的标识
113
- u_textureBlend: textureBlend === 'normal' ? 0.0 : 1.0,
114
- u_time: this.layer.getLayerAnimateTime() || 0,
115
- u_linearColor: useLinearColor //是否使用渐变色
116
- };
117
- var commonBufferInfo = this.getUniformsBufferInfo(commonOptions);
118
- return commonBufferInfo;
44
+ // public enableShaderEncodeStyles = ['opacity'];
45
+ getCommonUniformsInfo() {
46
+ const {
47
+ sourceColor,
48
+ targetColor,
49
+ textureBlend = 'normal',
50
+ lineType = 'solid',
51
+ dashArray = [10, 5],
52
+ lineTexture = false,
53
+ iconStep = 100,
54
+ segmentNumber = 30,
55
+ globalArcHeight = 10
56
+ } = this.layer.getLayerConfig();
57
+ const {
58
+ animateOption
59
+ } = this.layer.getLayerConfig();
60
+ if (dashArray.length === 2) {
61
+ dashArray.push(0, 0);
119
62
  }
120
-
121
- // public getAnimateUniforms(): IModelUniform {
122
- // const { animateOption } = this.layer.getLayerConfig() as ILayerConfig;
123
- // return {
124
- // u_animate: this.animateOption2Array(animateOption as IAnimateOption),
125
- // u_time: this.layer.getLayerAnimateTime(),
126
- // };
127
- // }
128
- }, {
129
- key: "initModels",
130
- value: function () {
131
- var _initModels = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
132
- return _regeneratorRuntime.wrap(function _callee$(_context) {
133
- while (1) switch (_context.prev = _context.next) {
134
- case 0:
135
- this.initUniformsBuffer();
136
- this.updateTexture();
137
- this.iconService.on('imageUpdate', this.updateTexture);
138
- return _context.abrupt("return", this.buildModels());
139
- case 4:
140
- case "end":
141
- return _context.stop();
142
- }
143
- }, _callee, this);
144
- }));
145
- function initModels() {
146
- return _initModels.apply(this, arguments);
147
- }
148
- return initModels;
149
- }()
150
- }, {
151
- key: "clearModels",
152
- value: function clearModels() {
153
- var _this$texture2;
154
- (_this$texture2 = this.texture) === null || _this$texture2 === void 0 || _this$texture2.destroy();
155
- this.iconService.off('imageUpdate', this.updateTexture);
63
+ // 转化渐变色
64
+ let useLinearColor = 0; // 默认不生效
65
+ let sourceColorArr = [0, 0, 0, 0];
66
+ let targetColorArr = [0, 0, 0, 0];
67
+ if (sourceColor && targetColor) {
68
+ sourceColorArr = rgb2arr(sourceColor);
69
+ targetColorArr = rgb2arr(targetColor);
70
+ useLinearColor = 1;
156
71
  }
157
- }, {
158
- key: "getShaders",
159
- value: function getShaders() {
160
- return {
161
- frag: arc3d_line_frag,
162
- vert: arc3d_line_vert,
163
- type: ''
164
- };
72
+ if (this.rendererService.getDirty()) {
73
+ var _this$texture;
74
+ (_this$texture = this.texture) === null || _this$texture === void 0 || _this$texture.bind();
165
75
  }
166
- }, {
167
- key: "buildModels",
168
- value: function () {
169
- var _buildModels = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {
170
- var _ref3, _ref3$segmentNumber, segmentNumber, _this$getShaders, frag, vert, type, model;
171
- return _regeneratorRuntime.wrap(function _callee2$(_context2) {
172
- while (1) switch (_context2.prev = _context2.next) {
173
- case 0:
174
- _ref3 = this.layer.getLayerConfig(), _ref3$segmentNumber = _ref3.segmentNumber, segmentNumber = _ref3$segmentNumber === void 0 ? 30 : _ref3$segmentNumber;
175
- _this$getShaders = this.getShaders(), frag = _this$getShaders.frag, vert = _this$getShaders.vert, type = _this$getShaders.type;
176
- _context2.next = 4;
177
- return this.layer.buildLayerModel({
178
- moduleName: 'lineArc3d' + type,
179
- vertexShader: vert,
180
- fragmentShader: frag,
181
- inject: this.getInject(),
182
- triangulation: LineArcTriangulation,
183
- styleOption: {
184
- segmentNumber: segmentNumber
185
- }
186
- });
187
- case 4:
188
- model = _context2.sent;
189
- return _context2.abrupt("return", [model]);
190
- case 6:
191
- case "end":
192
- return _context2.stop();
193
- }
194
- }, _callee2, this);
195
- }));
196
- function buildModels() {
197
- return _buildModels.apply(this, arguments);
198
- }
199
- return buildModels;
200
- }()
201
- }, {
202
- key: "registerBuiltinAttributes",
203
- value: function registerBuiltinAttributes() {
204
- var _this2 = this;
205
- this.styleAttributeService.registerStyleAttribute({
206
- name: 'size',
207
- type: AttributeType.Attribute,
208
- descriptor: {
209
- name: 'a_Size',
210
- shaderLocation: ShaderLocation.SIZE,
211
- buffer: {
212
- // give the WebGL driver a hint that this buffer may change
213
- usage: gl.DYNAMIC_DRAW,
214
- data: [],
215
- type: gl.FLOAT
216
- },
217
- size: 1,
218
- update: function update(feature) {
219
- var _feature$size = feature.size,
220
- size = _feature$size === void 0 ? 1 : _feature$size;
221
- return Array.isArray(size) ? [size[0]] : [size];
222
- }
76
+ const commonOptions = {
77
+ u_animate: this.animateOption2Array(animateOption),
78
+ u_dash_array: dashArray,
79
+ u_sourceColor: sourceColorArr,
80
+ u_targetColor: targetColorArr,
81
+ u_textSize: [1024, this.iconService.canvasHeight || 128],
82
+ u_globel: this.mapService.version === 'GLOBEL' ? 1 : 0,
83
+ u_globel_radius: EARTH_RADIUS,
84
+ // 地球半径
85
+ u_global_height: globalArcHeight,
86
+ segmentNumber,
87
+ u_line_type: lineStyleObj[lineType] || 0.0,
88
+ u_icon_step: iconStep,
89
+ u_line_texture: lineTexture ? 1.0 : 0.0,
90
+ // 传入线的标识
91
+ u_textureBlend: textureBlend === 'normal' ? 0.0 : 1.0,
92
+ u_time: this.layer.getLayerAnimateTime() || 0,
93
+ u_linearColor: useLinearColor //是否使用渐变色
94
+ };
95
+ const commonBufferInfo = this.getUniformsBufferInfo(commonOptions);
96
+ return commonBufferInfo;
97
+ }
98
+
99
+ // public getAnimateUniforms(): IModelUniform {
100
+ // const { animateOption } = this.layer.getLayerConfig() as ILayerConfig;
101
+ // return {
102
+ // u_animate: this.animateOption2Array(animateOption as IAnimateOption),
103
+ // u_time: this.layer.getLayerAnimateTime(),
104
+ // };
105
+ // }
106
+
107
+ initModels() {
108
+ var _this = this;
109
+ return _asyncToGenerator(function* () {
110
+ _this.initUniformsBuffer();
111
+ _this.updateTexture();
112
+ _this.iconService.on('imageUpdate', _this.updateTexture);
113
+ return _this.buildModels();
114
+ })();
115
+ }
116
+ clearModels() {
117
+ var _this$texture2;
118
+ (_this$texture2 = this.texture) === null || _this$texture2 === void 0 || _this$texture2.destroy();
119
+ this.iconService.off('imageUpdate', this.updateTexture);
120
+ }
121
+ getShaders() {
122
+ return {
123
+ frag: arc3d_line_frag,
124
+ vert: arc3d_line_vert,
125
+ type: ''
126
+ };
127
+ }
128
+ buildModels() {
129
+ var _this2 = this;
130
+ return _asyncToGenerator(function* () {
131
+ const {
132
+ segmentNumber = 30
133
+ } = _this2.layer.getLayerConfig();
134
+ const {
135
+ frag,
136
+ vert,
137
+ type
138
+ } = _this2.getShaders();
139
+ const model = yield _this2.layer.buildLayerModel({
140
+ moduleName: 'lineArc3d' + type,
141
+ vertexShader: vert,
142
+ fragmentShader: frag,
143
+ inject: _this2.getInject(),
144
+ triangulation: LineArcTriangulation,
145
+ styleOption: {
146
+ segmentNumber
223
147
  }
224
148
  });
225
- this.styleAttributeService.registerStyleAttribute({
226
- name: 'instance',
227
- // 弧线起始点信息
228
- type: AttributeType.Attribute,
229
- descriptor: {
230
- name: 'a_Instance',
231
- shaderLocation: 12,
232
- buffer: {
233
- usage: gl.STATIC_DRAW,
234
- data: [],
235
- type: gl.FLOAT
236
- },
237
- size: 4,
238
- update: function update(feature, featureIdx, vertex) {
239
- return [vertex[3], vertex[4], vertex[5], vertex[6]];
240
- }
149
+ return [model];
150
+ })();
151
+ }
152
+ registerBuiltinAttributes() {
153
+ this.styleAttributeService.registerStyleAttribute({
154
+ name: 'size',
155
+ type: AttributeType.Attribute,
156
+ descriptor: {
157
+ name: 'a_Size',
158
+ shaderLocation: ShaderLocation.SIZE,
159
+ buffer: {
160
+ // give the WebGL driver a hint that this buffer may change
161
+ usage: gl.DYNAMIC_DRAW,
162
+ data: [],
163
+ type: gl.FLOAT
164
+ },
165
+ size: 1,
166
+ update: feature => {
167
+ const {
168
+ size = 1
169
+ } = feature;
170
+ return Array.isArray(size) ? [size[0]] : [size];
241
171
  }
242
- });
243
- this.styleAttributeService.registerStyleAttribute({
244
- name: 'uv',
245
- type: AttributeType.Attribute,
246
- descriptor: {
247
- name: 'a_iconMapUV',
248
- shaderLocation: 14,
249
- buffer: {
250
- usage: gl.DYNAMIC_DRAW,
251
- data: [],
252
- type: gl.FLOAT
253
- },
254
- size: 2,
255
- update: function update(feature) {
256
- var iconMap = _this2.iconService.getIconMap();
257
- var texture = feature.texture;
258
- var _ref4 = iconMap[texture] || {
259
- x: 0,
260
- y: 0
261
- },
262
- x = _ref4.x,
263
- y = _ref4.y;
264
- return [x, y];
265
- }
172
+ }
173
+ });
174
+ this.styleAttributeService.registerStyleAttribute({
175
+ name: 'instance',
176
+ // 弧线起始点信息
177
+ type: AttributeType.Attribute,
178
+ descriptor: {
179
+ name: 'a_Instance',
180
+ shaderLocation: 12,
181
+ buffer: {
182
+ usage: gl.STATIC_DRAW,
183
+ data: [],
184
+ type: gl.FLOAT
185
+ },
186
+ size: 4,
187
+ update: (feature, featureIdx, vertex) => {
188
+ return [vertex[3], vertex[4], vertex[5], vertex[6]];
266
189
  }
267
- });
268
- }
269
- }]);
270
- return Arc3DModel;
271
- }(BaseModel);
272
- export { Arc3DModel as default };
190
+ }
191
+ });
192
+ this.styleAttributeService.registerStyleAttribute({
193
+ name: 'uv',
194
+ type: AttributeType.Attribute,
195
+ descriptor: {
196
+ name: 'a_iconMapUV',
197
+ shaderLocation: 14,
198
+ buffer: {
199
+ usage: gl.DYNAMIC_DRAW,
200
+ data: [],
201
+ type: gl.FLOAT
202
+ },
203
+ size: 2,
204
+ update: feature => {
205
+ const iconMap = this.iconService.getIconMap();
206
+ const {
207
+ texture
208
+ } = feature;
209
+ const {
210
+ x,
211
+ y
212
+ } = iconMap[texture] || {
213
+ x: 0,
214
+ y: 0
215
+ };
216
+ return [x, y];
217
+ }
218
+ }
219
+ });
220
+ }
221
+ }