Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "actions/map"

Index

Functions

invokeCommand

mapResized

  • mapResized(width: number, height: number): ReduxAction
  • Sends a map resized notification

    export

    Parameters

    • width: number
    • height: number

    Returns ReduxAction

nextView

  • Goes to the next view on the navigation stack

    export

    Parameters

    • mapName: string

      The name of the current runtime amp

    Returns ReduxAction

previousView

  • Goes back to the previous view on the navigation stack

    export

    Parameters

    • mapName: string

      The name of the current runtime map

    Returns ReduxAction

queryMapFeatures

setActiveMap

  • Sets the active runtime map

    export

    Parameters

    • mapName: string

      The name of the runtime map to set as active

    Returns ReduxAction

setActiveTool

setBaseLayer

  • setBaseLayer(mapName: string, layerName: string): ReduxAction
  • Set the given external base layer as the active base layer

    export

    Parameters

    • mapName: string

      The name of the current runtime map

    • layerName: string

      The name of the external base layer to set as active

    Returns ReduxAction

setBusyCount

  • Sets the busy count of the viewer. A value greater than zero signifies that the viewer is currently busy performing various actions (eg. Loading/Rendering the current map image)

    export

    Parameters

    • busyCount: number

      The current busy count

    Returns ReduxAction

setCurrentView

  • Sets the current map view.

    NOTE: Subscribing components are not guaranteed to receive every new view change sent by calling this method. For purposes of optimization, views passed in that are "close enough" to the current view are not dispatched to subscribing components.

    export

    Parameters

    Returns ReduxThunkedAction

setFeatureTooltipsEnabled

  • setFeatureTooltipsEnabled(enabled: boolean): ReduxAction
  • Sets whether feature tooltips (aka. Map Tips) are enabled

    export

    Parameters

    • enabled: boolean

    Returns ReduxAction

setLayerTransparency

  • setLayerTransparency(mapName: string, layerName: string, opacity: number): ReduxAction
  • Set the transparency for the given OL layer

    export

    Parameters

    • mapName: string

      The name of the current runtime map

    • layerName: string

      The name of the OL layer

    • opacity: number

      A value between 0 and 1. 1 - Fully Opaque, 0 - Fully Transparent

    Returns ReduxAction

setManualFeatureTooltipsEnabled

  • setManualFeatureTooltipsEnabled(enabled: boolean): ReduxAction
  • Sets whether manual feature tooltips (aka. Map Tips) are enabled

    export

    Parameters

    • enabled: boolean

    Returns ReduxAction

setMouseCoordinates

  • setMouseCoordinates(mapName: string, coord: any): ReduxAction
  • Sets the current mouse coordinates

    export

    Parameters

    • mapName: string

      The name of the current runtime map

    • coord: any

      The current mouse coordinates

    Returns ReduxAction

setScale

  • setScale(mapName: string, scale: number): ReduxAction
  • Sets the view scale

    export

    Parameters

    • mapName: string

      The name of the current runtime map

    • scale: number

      The scale to set

    Returns ReduxAction

setSelection

  • setSelection(mapName: string, selectionSet: any): ReduxAction
  • Sets the selection set for the given map

    export

    Parameters

    • mapName: string

      The name of the current runtime map

    • selectionSet: any

      The selection set to apply

    Returns ReduxAction

setViewRotation

  • Sets the rotation of the current view

    export

    Parameters

    • rotation: number

    Returns ReduxAction

setViewRotationEnabled

  • setViewRotationEnabled(enabled: boolean): ReduxAction
  • Sets whether view rotation is enabled or not

    export

    Parameters

    • enabled: boolean

    Returns ReduxAction

setViewSizeUnits

showSelectedFeature

  • showSelectedFeature(mapName: string, layerId: string, featureIndex: number): ReduxAction
  • Shows the selected feature on the map

    export

    Parameters

    • mapName: string
    • layerId: string
    • featureIndex: number

    Returns ReduxAction

Generated using TypeDoc