LuciadRIA (2026.0.11)
    Preparing search index...

    An iterator over the result set of a query. If the cursor returns features that do not have a shape property, then you will need to configure a ShapeProvider on the FeatureLayer if you want to display the objects on a Map.

    interface Cursor<T = Feature> {
        hasNext(): boolean;
        next(): T;
    }

    Type Parameters

    • T = Feature

      Represents the type of elements that are served by the cursor.

    Implemented by

    Methods

    Methods

    • Returns true when the Cursor contains more elements.

      Returns boolean

      true when the Cursor contains more elements.

    • Returns the next element of the Cursor.

      Returns T

      the next element of the Cursor.