@arcgis/core
Version:
ArcGIS Maps SDK for JavaScript: A complete 2D and 3D mapping and data visualization API
16 lines (14 loc) • 661 B
TypeScript
import type { ClonableMixin } from "../../core/Clonable.js";
import type { JSONSupport } from "../../core/JSONSupport.js";
export interface GeotriggerProperties {}
/**
* A Geotrigger is a condition that will be monitored against dynamic GIS data - for example using a spatial operation to check for enter/exit. The only permissible type is a Fence Geotrigger.
*
* @since 4.24
*/
export default class Geotrigger extends GeotriggerSuperclass {
constructor(properties?: GeotriggerProperties);
/** String indicating the Geotrigger condition type. */
readonly type: "fence";
}
declare const GeotriggerSuperclass: typeof JSONSupport & typeof ClonableMixin