Source: src/js/models/connectors/GeoPoints-CesiumPoints.js

  1. "use strict";
  2. define(["cesium", "models/connectors/GeoPoints-Cesium"], function (
  3. Cesium,
  4. GeoPointsCesiumConnector,
  5. ) {
  6. /**
  7. * @class GeoPointsCesiumPointsConnector
  8. * @classdesc This connector keeps a CesiumVectorData model in sync with the
  9. * points in a GeoPoints collection. This connector will listen for changes to
  10. * the GeoPoints collection and update the cesiumModel with point entities
  11. * created from the points in the collection.
  12. * @name GeoPointsCesiumPointsConnector
  13. * @extends GeoPointsCesiumConnector
  14. * @constructor
  15. * @classcategory Models/Connectors
  16. * @since 2.27.0
  17. */
  18. return GeoPointsCesiumConnector.extend(
  19. /** @lends GeoPointsCesiumPointsConnector.prototype */ {
  20. /**
  21. * The type of Backbone.Model this is.
  22. * @type {string}
  23. * @default "GeoPointsCesiumPointsConnector"
  24. */
  25. type: "GeoPointsCesiumPointsConnector",
  26. /**
  27. * Extends the default Backbone.Model.defaults() function to specify
  28. * default attributes for the GeoPointsCesiumPointsConnector model.
  29. * @extends GeoPointsCesiumConnector.defaults
  30. * @returns {Object} The default attributes
  31. * @property {Array} layerPoints - The list of point entities that have
  32. * been added to the layer.
  33. */
  34. defaults: function () {
  35. return {
  36. // extend the defaults from the parent class
  37. ...GeoPointsCesiumConnector.prototype.defaults(),
  38. layerPoints: [],
  39. };
  40. },
  41. /**
  42. * Handle add, remove, merge, and reset events from the points collection
  43. * @param {"update"|"reset"} eventName - The name of the event
  44. * @param {GeoPoints} collection - The points collection
  45. * @param {Object} options - Options for the event, as passed by Backbone
  46. */
  47. handleCollectionChange(eventName, collection, options) {
  48. try {
  49. // For merges and resets, just remove all points and re-add them
  50. if (!options?.add && !options?.remove) {
  51. this.resetLayerPoints();
  52. return;
  53. }
  54. // For adds and removes, just add or remove the points that changed
  55. if (eventName === "update") {
  56. if (options.add) {
  57. const newModels = options.changes.added;
  58. newModels.forEach((model) => {
  59. this.addLayerPoint(model);
  60. });
  61. }
  62. if (options.remove) {
  63. const removedModels = options.changes.removed;
  64. removedModels.forEach((model) => {
  65. this.removeLayerPoint(model);
  66. });
  67. }
  68. }
  69. } catch (e) {
  70. console.warn('Error handling a "' + eventName + '" event.', e);
  71. }
  72. },
  73. /**
  74. * Resync the layer points with the points from the points collection.
  75. * This removes all point entities previously added to the layer and adds
  76. * new ones for each point in the points collection.
  77. */
  78. resetLayerPoints: function () {
  79. const layer = this.get("layer");
  80. layer.suspendEvents();
  81. this.removeAllLayerPoints();
  82. this.addAllLayerPoints();
  83. layer.resumeEvents();
  84. },
  85. /**
  86. * Remove all layer points previously added to the layer.
  87. * @returns {Boolean} Whether the layer points were removed
  88. */
  89. removeAllLayerPoints: function () {
  90. const layer = this.get("layer");
  91. if (!layer) return false;
  92. const layerPoints = this.get("layerPoints");
  93. layerPoints.forEach((entity) => {
  94. layer.removeEntity(entity);
  95. });
  96. return true;
  97. },
  98. /**
  99. * Add all points from the points collection to the layer.
  100. * @returns {Boolean} Whether the layer points were added
  101. */
  102. addAllLayerPoints: function () {
  103. const layer = this.get("layer");
  104. if (!layer) return false;
  105. const geoPoints = this.get("geoPoints");
  106. geoPoints.each((model) => {
  107. this.addLayerPoint(model);
  108. });
  109. return true;
  110. },
  111. /**
  112. * Add a point from the points collection to the layer. Adds the point
  113. * entity to the layerPoints array for tracking.
  114. * @param {GeoPoint} model - The point model to add to the layer
  115. * @returns {Cesium.Entity} The layer point that was created
  116. */
  117. addLayerPoint: function (model) {
  118. try {
  119. const layer = this.get("layer") || this.setLayer();
  120. const layerPoint = layer.addEntity({
  121. id: model.cid,
  122. position: model.get("mapWidgetCoords"),
  123. point: {
  124. pixelSize: 2,
  125. heightReference: Cesium.HeightReference.CLAMP_TO_GROUND,
  126. },
  127. });
  128. // Track the layer point so we can remove it later
  129. const layerPoints = this.get("layerPoints");
  130. layerPoints.push(layerPoint);
  131. return layerPoint;
  132. } catch (e) {
  133. console.log("Failed to add a point to a CesiumVectorData.", e);
  134. }
  135. },
  136. /**
  137. * Remove a point from the points collection from the layer. Removes the
  138. * point entity from the layerPoints array.
  139. * @param {GeoPoint} model - The point model to remove from the layer
  140. * @returns {Cesium.Entity} The layer point that was removed
  141. */
  142. removeLayerPoint: function (model) {
  143. try {
  144. const layer = this.get("layer");
  145. if (!layer) return false;
  146. const removedPoint = layer.removeEntity(model.cid);
  147. // Remove the layer point from the list of layer points
  148. const layerPoints = this.get("layerPoints");
  149. const index = layerPoints.indexOf(removedPoint);
  150. if (index > -1) {
  151. layerPoints.splice(index, 1);
  152. }
  153. return removedPoint;
  154. } catch (e) {
  155. console.log("Failed to remove a point from a CesiumVectorData.", e);
  156. }
  157. },
  158. },
  159. );
  160. });