您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

2 年前
2 年前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. # Change Log
  2. ### 3.0.0
  3. #### Breaking Changes 📣
  4. - Upgrade @cesium/engine to version 3.0.1.
  5. - Changed framework dependency from Cesium to @cesium/engine, @cesium/widget library is no longer used, only `Viewer` related code is synchronized.
  6. - Refactored framework packaging, `iife` and `node` generate separate framework packages.
  7. - Refactor the directory structure of the framework library.
  8. - Upgrade material `glsl` to 3.0.
  9. - Remove the `mapv` layer and `s3m` layer, and remove their dependencies.
  10. - Removed global functions `init`, `mixin`, `use`.
  11. - Remove `Namespace` global attribute, you can get third party libraries through global function `getLib`.
  12. - Modify the way of introducing framework `cdn` and `node`, the framework uses a whole package to load.
  13. - Modify the framework entry function to use `ready().then()` as the framework entry.
  14. - Modify the effect class constructor, need to pass `viewer` as parameter.
  15. - Modify the scene dom structure, remove the useless dom.
  16. #### Additions 🎉
  17. - Add sample code to the framework library
  18. - Add documentation code to the framework library
  19. - Add latitude and longitude layers
  20. #### Fixes 🔧
  21. - Optimize aggregation layer, use third party library `supercluster` for aggregation calculation
  22. - Optimize heat zone layer
  23. - Fix a number of issues caused by upgrading the Cesium framework
  24. ### 2.17.0 - 2022-10-29
  25. #### Breaking Changes 📣
  26. - Upgrade Cesium to version 1.98.1
  27. - Remove ModelCollectionPrimitive
  28. #### Fixes 🔧
  29. - Fix locatonbar mouse movement coordinate error
  30. - Fix a coordinate conversion problem in transform
  31. - Fix the tile mask issue
  32. ### 2.16.2 - 2022-09-13
  33. #### Additions 🎉
  34. - Open some Cesium native classes
  35. #### Fixes 🔧
  36. - Improve the scene export
  37. - Improve terrain loading [#126](https://github.com/dvgis/dc-sdk/issues/126)
  38. ### 2.16.1 - 2022-08-21
  39. #### Additions 🎉
  40. - Add mixNum parameter for viewable fields
  41. #### Fixes 🔧
  42. - Improve Model Instance
  43. - Improve heading math
  44. ### 2.16.0 - 2022-08-14
  45. #### Breaking Changes 📣
  46. - Upgrade Cesium to version 1.96.0
  47. - Abandon the init function
  48. - Modify Cesium introduction
  49. #### Fixes 🔧
  50. - Optimize the parabola function to add an end point to the calculation result
  51. - Optimize the use of name space module.
  52. - Fix the problem that the framework cannot be used due to repeated use in CDN mode.
  53. - Fix an issue created by upgrading Cesium
  54. ### 2.15.0 - 2022-07-16
  55. #### Breaking Changes 📣
  56. - Upgrade Cesium to version 1.95.0
  57. #### Additions 🎉
  58. - Added flyToBounds and zoomToBounds functions
  59. - Added code hint module
  60. - Add scene rendering error subscription event
  61. #### Fixes 🔧
  62. - Optimize position bar elevation value [#109](https://github.com/dvgis/dc-sdk/issues/109)
  63. - Fix the problem of incorrect recovery time of history track several times
  64. - Fix the problem of wrong display of the end of history track[#107](https://github.com/dvgis/dc-sdk/issues/107)
  65. - Fix the problem that the number of anchor points is wrong and the size cannot be set when editing the marker.
  66. ### 2.14.0 - 2022-06-04
  67. #### Breaking Changes 📣
  68. - Upgrade Cesium to version 1.94.2
  69. #### Additions 🎉
  70. - Add light cylinder primitive
  71. #### Fixes 🔧
  72. - Optimize overlay add and remove function
  73. - Fix a bug that the history track clear function is not working [#102](https://github.com/dvgis/dc-sdk/issues/102)
  74. - Fix the problem that editing circle doesn't work [#104](https://github.com/dvgis/dc-sdk/issues/104)
  75. - Fix the problem that some analysis functions can't be used because of removing Cesium.when [#105](https://github.com/dvgis/dc-sdk/issues/105)
  76. ### 2.13.0 - 2022-05-08
  77. #### Breaking Changes 📣
  78. - Upgrade Cesium to version 1.93.0
  79. #### Additions 🎉
  80. - Added scene split
  81. - Added s3m height offset setting [#98](https://github.com/dvgis/dc-sdk/issues/98)
  82. - Add marker line add max anchor points [#99](https://github.com/dvgis/dc-sdk/issues/99)
  83. - Add history track add model orientation setting (heading offset) [#100](https://github.com/dvgis/dc-sdk/issues/100)
  84. #### Fixes 🔧
  85. - Fix the problem that plot plot coordinates are empty [#95](https://github.com/dvgis/dc-sdk/issues/95)
  86. ### 2.12.0 - 2022-04-10
  87. #### Breaking Changes 📣
  88. - Upgrade Cesium to version 1.92.0
  89. #### Additions 🎉
  90. - Added 3dtiles splite effect
  91. - Added FPS and MS parameters for LocationBar
  92. - Added the ability to customize the logo (requires token)
  93. #### Fixes 🔧
  94. - Fix the problem caused by Cesium.when removal
  95. - Improve the map splite effect
  96. ### 2.11.0 - 2022-03-12
  97. #### Breaking Changes 📣
  98. - Upgrade Cesium to version 1.91.0
  99. #### Additions 🎉
  100. - Added support for MSAA (a type of anti-aliasing)
  101. - Added GPX layer
  102. - Added S3M layer (as a separate package)
  103. #### Fixes 🔧
  104. - Fixes node-sass installation issues
  105. ### 2.10.0 - 2022-02-20
  106. #### Breaking Changes 📣
  107. - Upgrade Cesium to version 1.90.0
  108. #### Additions 🎉
  109. - Added map filter color feature
  110. - Added framework support for vite
  111. #### Fixes 🔧
  112. - Fix Mapv module packaging issue
  113. ### 2.9.0 - 2022-02-08
  114. #### Breaking Changes 📣
  115. - Upgrade Cesium to version 1.90.0
  116. #### Additions 🎉
  117. - Added map filter color feature
  118. - Added framework support for vite
  119. #### Fixes 🔧
  120. - Fix Mapv module packaging issue
  121. ### 2.9.0 - 2022-01-08
  122. #### Breaking Changes 📣
  123. - Upgrade Cesium to version 1.89.0
  124. #### Additions 🎉
  125. - Added protocol parameter settings when creating partial map tiles
  126. - Add partial tool class name abbreviations
  127. #### Fixes 🔧
  128. - Solve the problem that right click menu content is still displayed when empty
  129. - Fix overlay style setting overlay issue
  130. - Solve the problem that some overlay setting labels are invalid
  131. ### 2.8.0 - 2021-12-04
  132. #### Breaking Changes 📣
  133. - Upgrade Cesium to version 1.88.0
  134. #### Additions 🎉
  135. - Add ground primitive layer
  136. - Add both replacement and append FS modes for 3Dtiles
  137. - Add water primitive holes param
  138. - Add hot layer support for classificationType
  139. #### Fixes 🔧
  140. - Improve the function of clearing or removing the primitive layer
  141. - Improve the history track function
  142. ### 2.7.0 - 2021-11-13
  143. #### Breaking Changes 📣
  144. - Upgrade Cesium to version 1.87.0
  145. #### Additions 🎉
  146. - Add overlay clouds
  147. - Add get LayerGroup function
  148. #### Fixes 🔧
  149. - Improve the plot module
  150. ### 2.6.1 - 2021-10-23
  151. #### Breaking Changes 📣
  152. - Upgrade Cesium to version 1.86.0
  153. #### Fixes 🔧
  154. - Improve the DivIcon style
  155. - Improve the Popup config
  156. - Improve the terrian name option [#74](https://github.com/dvgis/dc-sdk/pull/74)
  157. ### 2.6.0 - 2021-10-10
  158. #### Breaking Changes 📣
  159. - Upgrade Cesium to version 1.86.0
  160. #### Fixes 🔧
  161. - Improve the MapSwitch [#70](https://github.com/dvgis/dc-sdk/issues/70)
  162. - Improve the AroundView [#72](https://github.com/dvgis/dc-sdk/issues/72)
  163. ### 2.5.0 - 2021-09-04
  164. #### Breaking Changes 📣
  165. - Upgrade Cesium to version 1.85.0
  166. #### Fixes 🔧
  167. - Fix the problem that roaming cannot set parameters and the failed camera cannot move [#65](https://github.com/dvgis/dc-sdk/issues/65)
  168. - Fix the problem that the gradient setting of heat layer [#66](https://github.com/dvgis/dc-sdk/issues/66)
  169. - Improve the DivIcon style
  170. ### 2.4.2 - 2021-08-28
  171. #### Fixes 🔧
  172. - Hide the chart layer at the back [#55](https://github.com/dvgis/dc-sdk/issues/55)
  173. - Hide the div icon at the back [#56](https://github.com/dvgis/dc-sdk/issues/56)
  174. - Improve the position editor [#57](https://github.com/dvgis/dc-sdk/issues/57)
  175. - Improve the terrain clipping [#58](https://github.com/dvgis/dc-sdk/issues/58)
  176. ### 2.4.1 - 2021-08-21
  177. #### Additions 🎉
  178. - Add support for layer mouse events [#53](https://github.com/dvgis/dc-sdk/issues/54)
  179. - Add partial mouse default events [#54](https://github.com/dvgis/dc-sdk/issues/54)
  180. - Add function to get tile information
  181. #### Fixes 🔧
  182. - Improve the plot function
  183. ### 2.4.0 - 2021-08-07
  184. #### Breaking Changes 📣
  185. - Upgrade Cesium to version 1.84.0
  186. #### Additions 🎉
  187. - Add bounce primitive overlays
  188. - Add model collection primitive
  189. #### Fixes 🔧
  190. - Refine type property
  191. - Improve mouse event
  192. - Improve once event
  193. ### 2.3.2 - 2021-07-25
  194. #### Additions 🎉
  195. - Add model primitive to get node-related functions [#51](https://github.com/dvgis/dc-sdk/issues/51)
  196. #### Fixes 🔧
  197. - Improve the history track restore function [#50](https://github.com/dvgis/dc-sdk/issues/50)
  198. ### 2.3.1 - 2021-07-19
  199. #### Breaking Changes 📣
  200. - Refactored plotting function
  201. - Remove Position rounding function
  202. - Refine the infrastructure part of the script
  203. #### Additions 🎉
  204. - Add spatial measurement tools
  205. - Add the plotting tool module
  206. - Add function midCartesian to calculate the middle point of Cartesian3
  207. #### Fixes 🔧
  208. - Improve the Position copy function
  209. - Improve the model editing tool for 3dtiles position editing function
  210. - Improve the function area
  211. - Improve the function of calculating the point position of a sector
  212. ### 2.3.0 - 2021-07-03
  213. #### Breaking Changes 📣
  214. - Upgrade Cesium to version 1.83.0
  215. #### Additions 🎉
  216. - Add constants for mouse mode
  217. - Add property settings for globe terrain exaggeration
  218. #### Fixes 🔧
  219. - Improve the parsePositions for string coords
  220. ### 2.2.5 - 2021-06-26
  221. #### Additions 🎉
  222. - Adds line and face rotation conversion calculations
  223. #### Fixes 🔧
  224. - Improve the interpolation of history track
  225. - Improve the function of plot for above the overlay
  226. - Fix the problem of flickering when analyzing transformation parameters in the viewable field [#37](https://github.com/dvgis/dc-sdk/issues/37)
  227. - Fix the problem that DivIcon cannot get the current coordinates set to (0,0,0) by default [#38](https://github.com/dvgis/dc-sdk/issues/38)
  228. ### 2.2.4 - 2021-06-12
  229. #### Breaking Changes 📣
  230. - Refactored the roaming function into first-person roaming and keyboard roaming [#34](https://github.com/dvgis/dc-sdk/issues/34)
  231. - Original roaming function becomes history track, refine its pause and play [#35](https://github.com/dvgis/dc-sdk/issues/35)
  232. #### Fixes 🔧
  233. - Improve heading function
  234. - Improve diffuse wall primitive
  235. - Fixes RadarScan missing Cesium issue [#33](https://github.com/dvgis/dc-sdk/issues/33)
  236. ### 2.2.3 - 2021-06-05
  237. #### Breaking Changes 📣
  238. - Modify the `CESIUM_BASE_URL` setting, which can be set via the global property `baseUrl`, which defaults to `. /libs/dc-sdk/resources/`
  239. #### Additions 🎉
  240. - Add various base primitive such as point, line, billboard, text
  241. - Add diffuse wall primitive
  242. #### Fixes 🔧
  243. - Improve the viewer destroy
  244. - Refine mouse and context-menu events for primitive
  245. ### 2.2.2 - 2021-05-29
  246. #### Additions 🎉
  247. - Open some Cesium internal properties
  248. - Add viewshed analysis
  249. - Add contour line analysis
  250. #### Fixes 🔧
  251. - Improve camera general tools
  252. - Improve the heading-pitch-roll setting of Tileset
  253. ### 2.2.1 - 2021-05-22
  254. #### Additions 🎉
  255. - Add camera video layer and plane video layer
  256. - Add plane video overlay
  257. - Add model primitive overlay
  258. #### Fixes 🔧
  259. - Improve the wind layer add fix the issue[#28](https://github.com/dvgis/dc-sdk/issues/28)
  260. - Repair the problem that the auxiliary view cone of video fusion function cannot be displayed[#29](https://github.com/dvgis/dc-sdk/issues/29)
  261. - Improve the video primitive
  262. - Repair the problem that the animation function cannot be used after the scene time is stoped[#31](https://github.com/dvgis/dc-sdk/issues/31)
  263. ### 2.2.0 - 2021-05-09
  264. #### Breaking Changes 📣
  265. - Upgrade Cesium to version 1.81.0
  266. - Rewrite the HeatLayer
  267. #### Additions 🎉
  268. - Add dynamic layer
  269. - Add dynamic model and dynamic billbard
  270. - Add model management functions for model expansion and merging
  271. - Add daylight 、through-view function
  272. ### 2.1.4 - 2021-04-24
  273. #### Additions 🎉
  274. - Add map functions for creating TMS, Grid, Mapbox, MapboxStyle
  275. - Add clipping module, including: globe clipping, terrain clipping
  276. - Add GroundSkyBox
  277. #### Fixes 🔧
  278. - Improve the plot module and fix the issue[#26](https://github.com/dvgis/dc-sdk/issues/26)
  279. - Improve the position editor module
  280. - Fix the FeatureGridLayer show and hide issue
  281. ### 2.1.3 - 2021-04-17
  282. #### Additions 🎉
  283. - Open section Cesium internal functions
  284. - Add FeatureGridLayer
  285. #### Fixes 🔧
  286. - Fix the plot bugs[#24](https://github.com/dvgis/dc-sdk/issues/24)
  287. - Rewritten logo
  288. ### 2.1.2 - 2021-04-10
  289. #### Additions 🎉
  290. - Add DivIcon mouse-over and mouse-out functions
  291. - Add resolution and viewBounds properties
  292. #### Fixes 🔧
  293. - Fix the problem that AroundPoint and AroundView will be accelerated by multiple starts[#22](https://github.com/dvgis/dc-sdk/issues/22)
  294. - Fix the problem that mouse events do not work when the overlay is OSGB[#23](https://github.com/dvgis/dc-sdk/issues/23)
  295. ### 2.1.1 - 2021-04-06
  296. #### Fixes 🔧
  297. - Repair the problem that some modules version numbers are not uniform
  298. ### 2.1.0 - 2021-04-03
  299. #### Breaking Changes 📣
  300. - Upgrade Cesium to version 1.80.0
  301. #### Additions 🎉
  302. - Add GeoTools class, mainly using Turf for overlay related calculations
  303. #### Fixes 🔧
  304. - Modify the HtmlLayer set show error problem
  305. - Improve the authentication rules of accessToken
  306. ### 2.0.0 - 2021-03-27
  307. #### Breaking Changes 📣
  308. - Refactor the entire framework code and modularize the code
  309. - Consolidated previously scattered modules
  310. - Refactored the dependencies on DC in each module package
  311. - Redeveloped the user manual
  312. - Support for custom installation and full installation of DC
  313. #### Additions 🎉
  314. - Added token authentication function. Authentication can use some analysis and point editor functions
  315. - Add support for turf module, you can get turf by `const { turf } = DC.Namespace`.
  316. #### Fixes 🔧
  317. - Fix location bar time delay issue
  318. - Fixed the problem of invalid speed setting for radar scan material