Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface CoordinateConversion

Hierarchy

Index

Properties

container

container: string | HTMLElement

The ID or node representing the DOM element containing the widget.

Read more...

conversions

conversions: Collection<Conversion>

A Collection containing every Conversion that the widget is currently displaying.

Read more...

currentLocation

currentLocation: Point

Describes the location of the coordinates currently displayed by the widget as a Point.

Read more...

declaredClass

declaredClass: string

destroyed

destroyed: boolean

formats

formats: Collection<Format>

A Collection containing every Format that the widget is capable of displaying.

Read more...

goToOverride

goToOverride: GoToOverride

This function provides the ability to override either the IMapView goTo() or SceneView goTo() methods.

Read more...

headingLevel

headingLevel: number

Indicates the heading level to use for the coordinate input and coordinate settings headings.

Read more...

id

id: string

The unique ID assigned to the widget when the widget is created.

Read more...

initialized

initialized: boolean

label

label: string

The widget's label.

Read more...

locationSymbol

This symbol is used to visualize the location currently described by the widget when capture mode is active.

Read more...

mode

mode: "live" | "capture"

Describes the current mode of the widget.

Read more...

multipleConversions

multipleConversions: boolean

If this property is set to true, multiple conversions can be displayed.

Read more...

orientation

orientation: "auto" | "expand-up" | "expand-down"

Determines whether the widget should expand up or down.

Read more...

requestDelay

requestDelay: number

The number of milliseconds of delay before conversion requests will be sent to the GeometryService.

Read more...

storageEnabled

storageEnabled: boolean

If this property is set to true, sessionStorage will be used to hydrate and persist the CoordinateConversion widget's state within the same session.

Read more...

view

A reference to the MapView or SceneView.

Read more...

viewModel

The view model for this widget.

Read more...

visible

visible: boolean

Indicates whether the widget is visible.

Read more...

visibleElements

The visible elements that are displayed within the widget.

Read more...

Methods

Protected _get

  • _get(propertyName: string): any
  • _get<T>(propertyName: string): T
  • Parameters

    • propertyName: string

    Returns any

  • Type parameters

    • T

    Parameters

    • propertyName: string

    Returns T

Protected _set

  • Type parameters

    • T

    Parameters

    • propertyName: string
    • value: T

    Returns CoordinateConversion

classes

  • classes(...classNames: any[]): string
  • A utility method used for building the value for a widget's class property.

    Read more...

    Parameters

    • Rest ...classNames: any[]

    Returns string

destroy

  • destroy(): void
  • Destroys the widget instance.

    Read more...

    Returns void

emit

  • emit(type: string, event?: any): boolean
  • Emits an event on the instance.

    Read more...

    Parameters

    • type: string
    • Optional event: any

    Returns boolean

get

  • get<T>(propertyName: string): T
  • get(propertyName: string): any
  • Type parameters

    • T

    Parameters

    • propertyName: string

    Returns T

  • Parameters

    • propertyName: string

    Returns any

hasEventListener

  • hasEventListener(type: string): boolean
  • Indicates whether there is an event listener on the instance that matches the provided event name.

    Read more...

    Parameters

    • type: string

    Returns boolean

isFulfilled

  • isFulfilled(): boolean
  • isFulfilled() may be used to verify if creating an instance of the class is fulfilled (either resolved or rejected).

    Read more...

    Returns boolean

isRejected

  • isRejected(): boolean
  • isRejected() may be used to verify if creating an instance of the class is rejected.

    Read more...

    Returns boolean

isResolved

  • isResolved(): boolean
  • isResolved() may be used to verify if creating an instance of the class is resolved.

    Read more...

    Returns boolean

Protected notifyChange

  • notifyChange(propertyName: string): void
  • Parameters

    • propertyName: string

    Returns void

on

  • Registers an event handler on the instance.

    Read more...

    Parameters

    Returns IHandle

own

  • Widget teardown helper.

    Read more...

    Parameters

    Returns void

postInitialize

  • postInitialize(): void
  • This method is primarily used by developers when implementing custom widgets. Executes after widget is ready for rendering.

    Read more...

    Returns void

render

  • render(): any
  • This method is primarily used by developers when implementing custom widgets. It must be implemented by subclasses for rendering.

    Read more...

    Returns any

renderNow

  • renderNow(): void
  • Renders widget to the DOM immediately.

    Read more...

    Returns void

reverseConvert

  • reverseConvert(coordinate: string, format: Format): Promise<Point>
  • Attempt to convert a string into a Point.

    Read more...

    Parameters

    • coordinate: string
    • format: Format

    Returns Promise<Point>

scheduleRender

  • scheduleRender(): void
  • This method is primarily used by developers when implementing custom widgets. Schedules widget rendering.

    Read more...

    Returns void

set

  • Type parameters

    • T

    Parameters

    • propertyName: string
    • value: T

    Returns CoordinateConversion

  • Parameters

    Returns CoordinateConversion

watch

  • Parameters

    • path: string | string[]
    • callback: WatchCallback
    • Optional sync: boolean

    Returns WatchHandle

when

  • when(callback?: Function, errback?: Function): Promise<any>
  • when() may be leveraged once an instance of the class is created.

    Read more...

    Parameters

    • Optional callback: Function
    • Optional errback: Function

    Returns Promise<any>

Generated using TypeDoc