layer/bbox.js

  1. 'use strict';
  2. // TODO: this module is currently split from layer.js because layer.js is already huge and doesn't need
  3. // more functions we can't find. When (if ever) we refactor this can probably merge with some other code.
  4. const defaultRenderers = require('../defaultRenderers.json');
  5. function bboxBuilder(esriBundle, apiRef) {
  6. /**
  7. * Makes a bounding box layer (a graphics layer with one rectangle graphic matching the supplied extent).
  8. * @method makeBoundingBox
  9. * @param {String} id the id of the bounding box to be created
  10. * @param {EsriExtent} extent an ESRI extent object to be used for the graphics boundaries
  11. * @param {SpatialReference} targetSr an ESRI spatial reference which is used for projecting the result
  12. * @return {GraphicsLayer} an ESRI GraphicsLayer
  13. */
  14. return (id, extent, targetSr) => {
  15. const result = new esriBundle.GraphicsLayer({ id, visible: true });
  16. let projectedExtent = extent;
  17. if (!apiRef.proj.isSpatialRefEqual(extent.spatialReference, targetSr)) {
  18. projectedExtent = apiRef.proj.projectEsriExtent(extent, targetSr);
  19. }
  20. result.add(new esriBundle.Graphic({
  21. geometry: projectedExtent,
  22. symbol: defaultRenderers.boundingBoxPoly.renderer.symbol
  23. }));
  24. return result;
  25. };
  26. }
  27. module.exports = (esriBundle, apiRef) => ({
  28. makeBoundingBox: bboxBuilder(esriBundle, apiRef)
  29. });