File

src/api/webApi/data/spatialRange.interface.ts

Index

Methods

Methods

getFeatures
getFeatures()
Returns : Array<Feature>
intersects
intersects(spatialRange: SpatialRange)

Does this spatial range intersect with the specified one.

Parameters :
Name Type Optional
spatialRange SpatialRange No
Returns : boolean
isBounded
isBounded()
Returns : boolean
isUnbounded
isUnbounded()
Returns : boolean
isUnknown
isUnknown()
Returns : boolean
import { Feature } from '@turf/turf';

export interface SpatialRange {

  isUnbounded(): boolean;
  isUnknown(): boolean;
  isBounded(): boolean;

  /**
   * Does this spatial range intersect with the specified one.
   * @param SpatialRange
   */
  intersects(spatialRange: SpatialRange): boolean;


  getFeatures(): Array<Feature>;
}

results matching ""

    No results matching ""