You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Viewer.js 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  1. /**
  2. * @Author: Caven
  3. * @Date: 2019-12-27 17:13:24
  4. */
  5. import { Cesium } from '@dc-modules/namespace'
  6. import Parse from '@dc-modules/parse/Parse'
  7. import {
  8. LayerGroupEventType,
  9. LayerEventType,
  10. MouseEvent,
  11. ViewerEvent,
  12. SceneEvent
  13. } from '@dc-modules/event'
  14. import { ViewerOption, CameraOption } from '@dc-modules/option'
  15. import { Util, DomUtil } from '@dc-modules/utils'
  16. import { Transform } from '@dc-modules/transform'
  17. import createWidgets from '@dc-modules/widget'
  18. const DEF_OPTS = {
  19. animation: false, //Whether to create animated widgets, lower left corner of the meter
  20. baseLayerPicker: false, //Whether to display the layer selector
  21. imageryProvider: false, // Whether to display the default imagery
  22. fullscreenButton: false, //Whether to display the full-screen button
  23. geocoder: false, //To display the geocoder widget, query the button in the upper right corner
  24. homeButton: false, //Whether to display the Home button
  25. infoBox: false, //Whether to display the information box
  26. sceneModePicker: false, //Whether to display 3D/2D selector
  27. selectionIndicator: false, //Whether to display the selection indicator component
  28. timeline: false, //Whether to display the timeline
  29. navigationHelpButton: false, //Whether to display the help button in the upper right corner
  30. navigationInstructionsInitiallyVisible: false,
  31. creditContainer: undefined,
  32. shouldAnimate: true
  33. }
  34. class Viewer {
  35. constructor(id, options = {}) {
  36. if (!id || !document.getElementById(id)) {
  37. throw new Error('Viewer:the id is empty')
  38. }
  39. this._delegate = new Cesium.Viewer(id, {
  40. ...DEF_OPTS,
  41. ...options
  42. }) // Initialize the viewer
  43. /**
  44. * Registers events
  45. */
  46. new MouseEvent(this) // Register global mouse events
  47. this._viewerEvent = new ViewerEvent() // Register viewer events
  48. this._sceneEvent = new SceneEvent(this) // Register scene events
  49. this._viewerOption = new ViewerOption(this) // Initialize the viewer option
  50. this._cameraOption = new CameraOption(this) // Initialize the camera option
  51. this._dcContainer = DomUtil.create(
  52. 'div',
  53. 'dc-container',
  54. document.getElementById(id)
  55. ) //Register the custom container
  56. this._baseLayerPicker = new Cesium.BaseLayerPickerViewModel({
  57. globe: this._delegate.scene.globe
  58. }) //Initialize the baseLayer picker
  59. this._layerGroupCache = {}
  60. this._layerCache = {}
  61. /**
  62. * Registers default widgets
  63. */
  64. let widgets = createWidgets()
  65. Object.keys(widgets).forEach(key => {
  66. this.use(widgets[key])
  67. })
  68. }
  69. get delegate() {
  70. return this._delegate
  71. }
  72. get dcContainer() {
  73. return this._dcContainer
  74. }
  75. get scene() {
  76. return this._delegate.scene
  77. }
  78. get camera() {
  79. return this._delegate.camera
  80. }
  81. get canvas() {
  82. return this._delegate.scene.canvas
  83. }
  84. get dataSources() {
  85. return this._delegate.dataSources
  86. }
  87. get imageryLayers() {
  88. return this._delegate.imageryLayers
  89. }
  90. get terrainProvider() {
  91. return this._delegate.terrainProvider
  92. }
  93. get entities() {
  94. return this._delegate.entities
  95. }
  96. get postProcessStages() {
  97. return this._delegate.postProcessStages
  98. }
  99. get clock() {
  100. return this._delegate.clock
  101. }
  102. get viewerEvent() {
  103. return this._viewerEvent
  104. }
  105. get cameraPosition() {
  106. let position = Transform.transformCartesianToWGS84(this.camera.positionWC)
  107. if (position) {
  108. position.heading = Cesium.Math.toDegrees(this.camera.heading)
  109. position.pitch = Cesium.Math.toDegrees(this.camera.pitch)
  110. position.roll = Cesium.Math.toDegrees(this.camera.roll)
  111. }
  112. return position
  113. }
  114. get resolution() {
  115. let width = this.scene.canvas.width
  116. let height = this.scene.canvas.height
  117. let min = Transform.transformWindowToWGS84(
  118. new Cesium.Cartesian2((width / 2) | 0, height - 1),
  119. this
  120. )
  121. let max = Transform.transformWindowToWGS84(
  122. new Cesium.Cartesian2((1 + width / 2) | 0, height - 1),
  123. this
  124. )
  125. if (!min || !max) {
  126. return undefined
  127. }
  128. return Math.abs(min.lng - max.lng)
  129. }
  130. get viewBounds() {
  131. let width = this.scene.canvas.width
  132. let height = this.scene.canvas.height
  133. let min = Transform.transformWindowToWGS84(
  134. new Cesium.Cartesian2(0, height),
  135. this
  136. )
  137. let max = Transform.transformWindowToWGS84(
  138. new Cesium.Cartesian2(width, 0),
  139. this
  140. )
  141. if (!min || !max) {
  142. return undefined
  143. }
  144. return {
  145. west: min.lng,
  146. south: min.lat,
  147. east: max.lng,
  148. north: max.lat
  149. }
  150. }
  151. /***
  152. *
  153. * @param layerGroup
  154. * @private
  155. */
  156. _addLayerGroup(layerGroup) {
  157. if (
  158. layerGroup &&
  159. layerGroup.layerGroupEvent &&
  160. !Object(this._layerGroupCache).hasOwnProperty(layerGroup.id)
  161. ) {
  162. layerGroup.layerGroupEvent.fire(LayerGroupEventType.ADD, this)
  163. this._layerGroupCache[layerGroup.id] = layerGroup
  164. }
  165. }
  166. /**
  167. *
  168. * @param layerGroup
  169. * @private
  170. */
  171. _removeLayerGroup(layerGroup) {
  172. if (
  173. layerGroup &&
  174. layerGroup.layerGroupEvent &&
  175. Object(this._layerGroupCache).hasOwnProperty(layerGroup.id)
  176. ) {
  177. layerGroup.layerGroupEvent.fire(LayerGroupEventType.REMOVE, this)
  178. delete this._layerGroupCache[layerGroup.id]
  179. }
  180. }
  181. /**
  182. * @param layer
  183. * @private
  184. */
  185. _addLayer(layer) {
  186. if (layer && layer.layerEvent) {
  187. !this._layerCache[layer.type] && (this._layerCache[layer.type] = {})
  188. if (!Object(this._layerCache[layer.type]).hasOwnProperty(layer.id)) {
  189. layer.layerEvent.fire(LayerEventType.ADD, this)
  190. this._layerCache[layer.type][layer.id] = layer
  191. }
  192. }
  193. }
  194. /**
  195. * @param layer
  196. * @private
  197. */
  198. _removeLayer(layer) {
  199. if (
  200. layer &&
  201. layer.layerEvent &&
  202. Object(this._layerCache[layer.type]).hasOwnProperty(layer.id)
  203. ) {
  204. layer.layerEvent.fire(LayerEventType.REMOVE, this)
  205. delete this._layerCache[layer.type][layer.id]
  206. }
  207. }
  208. /**
  209. * Sets viewer options
  210. * @param options
  211. * @returns {Viewer}
  212. */
  213. setOptions(options) {
  214. this._viewerOption.setOptions(options)
  215. return this
  216. }
  217. /**
  218. * Sets camera pitch range
  219. * @param min
  220. * @param max
  221. * @returns {Viewer}
  222. */
  223. setPitchRange(min = -90, max = -20) {
  224. this._cameraOption.setPitchRange(min, max)
  225. return this
  226. }
  227. /**
  228. * @param west
  229. * @param south
  230. * @param east
  231. * @param north
  232. * @returns {Viewer}
  233. */
  234. setBounds(west, south, east, north) {
  235. this._cameraOption.setBounds(west, south, east, north)
  236. return this
  237. }
  238. /**
  239. * Changes Scene Mode,2:2D,2.5:2.5D,3:3D
  240. * @param sceneMode
  241. * @param duration
  242. * @returns {Viewer}
  243. */
  244. changeSceneMode(sceneMode, duration = 0) {
  245. if (sceneMode === 2) {
  246. this._delegate.scene.morphTo2D(duration)
  247. } else if (sceneMode === 3) {
  248. this._delegate.scene.morphTo3D(duration)
  249. } else if (sceneMode === 2.5) {
  250. this._delegate.scene.morphToColumbusView(duration)
  251. }
  252. return this
  253. }
  254. /**
  255. * Changes Mouse Mode,0:Default,1: Change the tiltEventTypes to CameraEventType.RIGHT_DRAG
  256. * @param mouseMode
  257. * @returns {Viewer}
  258. */
  259. changeMouseMode(mouseMode) {
  260. this._cameraOption.changeMouseMode(mouseMode)
  261. return this
  262. }
  263. /**
  264. * Adds the baseLayer .
  265. * The baseLayer can be a single or an array,
  266. * and when the baseLayer is an array, the baseLayer will be loaded together
  267. * @param baseLayers
  268. * @param options
  269. * @returns {Viewer}
  270. */
  271. addBaseLayer(baseLayers, options = {}) {
  272. if (!baseLayers) {
  273. return this
  274. }
  275. this._baseLayerPicker.imageryProviderViewModels.push(
  276. new Cesium.ProviderViewModel({
  277. name: options.name || '地图',
  278. creationFunction: () => {
  279. return baseLayers
  280. }
  281. })
  282. )
  283. if (!this._baseLayerPicker.selectedImagery) {
  284. this._baseLayerPicker.selectedImagery = this._baseLayerPicker.imageryProviderViewModels[0]
  285. }
  286. this.mapSwitch && this.mapSwitch.addMap(options)
  287. return this
  288. }
  289. /**
  290. * Changes the current globe display of the baseLayer
  291. * @param index
  292. * @returns {Viewer}
  293. */
  294. changeBaseLayer(index) {
  295. if (this._baseLayerPicker && index >= 0) {
  296. this._baseLayerPicker.selectedImagery = this._baseLayerPicker.imageryProviderViewModels[
  297. index
  298. ]
  299. }
  300. return this
  301. }
  302. /**
  303. * Adds the terrain
  304. * @param terrain
  305. * @returns {Viewer}
  306. */
  307. addTerrain(terrain) {
  308. if (!terrain) {
  309. return this
  310. }
  311. this._baseLayerPicker.terrainProviderViewModels.push(
  312. new Cesium.ProviderViewModel({
  313. name: '地形',
  314. creationFunction: () => {
  315. return terrain
  316. }
  317. })
  318. )
  319. if (!this._baseLayerPicker.selectedTerrain) {
  320. this._baseLayerPicker.selectedTerrain = this._baseLayerPicker.terrainProviderViewModels[0]
  321. }
  322. return this
  323. }
  324. /**
  325. * Changes the current globe display of the terrain
  326. * @param index
  327. * @returns {Viewer}
  328. */
  329. changeTerrain(index) {
  330. if (this._baseLayerPicker && index >= 0) {
  331. this._baseLayerPicker.selectedTerrain = this._baseLayerPicker.terrainProviderViewModels[
  332. index
  333. ]
  334. }
  335. return this
  336. }
  337. /**
  338. * Removes terrain
  339. * @returns {Viewer}
  340. */
  341. removeTerrain() {
  342. this._baseLayerPicker.terrainProviderViewModels = []
  343. this._baseLayerPicker.selectedTerrain = undefined
  344. this._delegate.terrainProvider = new Cesium.EllipsoidTerrainProvider()
  345. return this
  346. }
  347. /**
  348. *
  349. * @param layerGroup
  350. * @returns {Viewer}
  351. */
  352. addLayerGroup(layerGroup) {
  353. this._addLayerGroup(layerGroup)
  354. return this
  355. }
  356. /**
  357. *
  358. * @param layerGroup
  359. * @returns {Viewer}
  360. */
  361. removeLayerGroup(layerGroup) {
  362. this._removeLayerGroup(layerGroup)
  363. return this
  364. }
  365. /**
  366. * add a layer
  367. * @param layer
  368. * @returns {Viewer}
  369. */
  370. addLayer(layer) {
  371. this._addLayer(layer)
  372. return this
  373. }
  374. /**
  375. * Removes a layer
  376. * @param layer
  377. * @returns {Viewer}
  378. */
  379. removeLayer(layer) {
  380. this._removeLayer(layer)
  381. return this
  382. }
  383. /**
  384. * Checks to see if the layer is included
  385. * @param layer
  386. * @returns {boolean}
  387. */
  388. hasLayer(layer) {
  389. return (
  390. layer &&
  391. layer.layerEvent &&
  392. Object(this._layerCache[layer.type]).hasOwnProperty(layer.id)
  393. )
  394. }
  395. /**
  396. * Returns a layer by id
  397. * @param id
  398. * @returns {*|undefined}
  399. */
  400. getLayer(id) {
  401. let filters = this.getLayers().filter(item => item.id === id)
  402. return filters && filters.length ? filters[0] : undefined
  403. }
  404. /**
  405. * Returns all layers
  406. * @returns {[]}
  407. */
  408. getLayers() {
  409. let result = []
  410. Object.keys(this._layerCache).forEach(type => {
  411. let cache = this._layerCache[type]
  412. Object.keys(cache).forEach(layerId => {
  413. result.push(cache[layerId])
  414. })
  415. })
  416. return result
  417. }
  418. /**
  419. * Iterate through each layer and pass it as an argument to the callback function
  420. * @param method
  421. * @param context
  422. * @returns {Viewer}
  423. */
  424. eachLayer(method, context) {
  425. Object.keys(this._layerCache).forEach(type => {
  426. let cache = this._layerCache[type]
  427. Object.keys(cache).forEach(layerId => {
  428. method.call(context, cache[layerId])
  429. })
  430. })
  431. return this
  432. }
  433. /**
  434. * @param target
  435. * @param duration
  436. * @returns {Viewer}
  437. */
  438. flyTo(target, duration) {
  439. this._delegate.flyTo(target?.delegate || target, {
  440. duration
  441. })
  442. return this
  443. }
  444. /**
  445. * @param target
  446. * @returns {Viewer}
  447. */
  448. zoomTo(target) {
  449. this._delegate.zoomTo(target?.delegate || target)
  450. return this
  451. }
  452. /**
  453. * Camera fly to a position
  454. * @param position
  455. * @param completeCallback
  456. * @param duration
  457. * @returns {Viewer}
  458. */
  459. flyToPosition(position, completeCallback, duration) {
  460. position = Parse.parsePosition(position)
  461. this.camera.flyTo({
  462. destination: Transform.transformWGS84ToCartesian(position),
  463. orientation: {
  464. heading: Cesium.Math.toRadians(position.heading),
  465. pitch: Cesium.Math.toRadians(position.pitch),
  466. roll: Cesium.Math.toRadians(position.roll)
  467. },
  468. complete: completeCallback,
  469. duration: duration
  470. })
  471. return this
  472. }
  473. /**
  474. * Camera zoom to a position
  475. * @param position
  476. * @param completeCallback
  477. * @returns {Viewer}
  478. */
  479. zoomToPosition(position, completeCallback) {
  480. this.flyToPosition(position, completeCallback, 0)
  481. return this
  482. }
  483. /**
  484. *
  485. * @param type
  486. * @param callback
  487. * @param context
  488. * @returns {Viewer}
  489. */
  490. on(type, callback, context) {
  491. this._viewerEvent.on(type, callback, context || this)
  492. this._sceneEvent.on(type, callback, context || this)
  493. return this
  494. }
  495. /**
  496. *
  497. * @param type
  498. * @param callback
  499. * @param context
  500. * @returns {Viewer}
  501. */
  502. once(type, callback, context) {
  503. this._viewerEvent.once(type, callback, context || this)
  504. return this
  505. }
  506. /**
  507. *
  508. * @param type
  509. * @param callback
  510. * @param context
  511. * @returns {Viewer}
  512. */
  513. off(type, callback, context) {
  514. this._viewerEvent.off(type, callback, context || this)
  515. this._sceneEvent.off(type, callback, context || this)
  516. return this
  517. }
  518. /**
  519. * Destroys the viewer.
  520. */
  521. destroy() {
  522. this._delegate.destroy()
  523. this._delegate = undefined
  524. return this
  525. }
  526. /**
  527. * Export scene to image
  528. * @param name
  529. * @returns {Viewer}
  530. */
  531. exportScene(name) {
  532. let canvas = this.canvas
  533. let image = canvas
  534. .toDataURL('image/png')
  535. .replace('image/png', 'image/octet-stream')
  536. let link = document.createElement('a')
  537. let blob = Util.dataURLtoBlob(image)
  538. let objUrl = URL.createObjectURL(blob)
  539. link.download = `${name || 'scene'}.png`
  540. link.href = objUrl
  541. link.click()
  542. return this
  543. }
  544. /**
  545. * Adds a plugin
  546. * @param plugin
  547. * @returns {Viewer}
  548. */
  549. use(plugin) {
  550. if (plugin && plugin.install) {
  551. plugin.install(this)
  552. }
  553. return this
  554. }
  555. }
  556. export default Viewer