geoview-core
    Preparing search index...

    Interface TransformEvent

    Event for transform operations

    interface TransformEvent {
        defaultPrevented: boolean;
        feature: Feature;
        propagationStopped: boolean;
        target: any;
        type: string;
        preventDefault(): void;
        stopPropagation(): void;
    }

    Hierarchy

    • BaseEvent
      • TransformEvent
    Index

    Properties

    defaultPrevented: boolean
    feature: Feature
    propagationStopped: boolean
    target: any

    The event target.

    type: string

    The event type.

    Methods

    • Prevent default. This means that no emulated click, singleclick or doubleclick events will be fired.

      Returns void

    • Stop event propagation.

      Returns void