UNPKG

@arcgis/core

Version:

ArcGIS Maps SDK for JavaScript: A complete 2D and 3D mapping and data visualization API

20 lines (18 loc) 643 B
import type { ClonableMixin } from "../../core/Clonable.js"; import type { JSONSupport } from "../../core/JSONSupport.js"; export interface GNSSPropertiesProperties extends Partial<Pick<GNSSProperties, "enabled">> {} /** * Defines the GNSS properties of Indoor Positioning Configuration. * * @since 4.33 */ export default class GNSSProperties extends GNSSPropertiesSuperclass { constructor(properties?: GNSSPropertiesProperties); /** * Property indicating whether GNSS is enabled or not. * * @default true */ accessor enabled: boolean; } declare const GNSSPropertiesSuperclass: typeof JSONSupport & typeof ClonableMixin