Interface ITileDataVisitor

Interface for a client visitor that is used to visit all THREE.Objects in a tile.

Hierarchy

  • ITileDataVisitor

Properties

tile: Tile

Methods

  • Visit an area object with the specified featureId; use pointAccessor to get the object's properties.

    Parameters

    • featureId: undefined | string | number

    Returns void

    Remarks

    Number ids are deprecated in favor of strings.

  • Visits a line object with the specified featureId; use pointAccessor to get the object's properties.

    Parameters

    • featureId: undefined | string | number
    • lineAccessor: ILineAccessor

    Returns void

    Remarks

    Number ids are deprecated in favor of strings.

  • Visits a 3D object with the specified featureId; use pointAccessor to get the object's properties.

    Parameters

    Returns void

    Remarks

    Number ids are deprecated in favor of strings.

  • Visits a point object with the specified featureId; use pointAccessor to get the object's properties.

    Parameters

    • featureId: undefined | string | number

    Returns void

    Remarks

    Number ids are deprecated in favor of strings.

  • Should return true if the visitor wants to visit the area object with the specified featureId.

    Parameters

    • featureId: undefined | string | number

    Returns boolean

    Remarks

    Number ids are deprecated in favor of strings.

  • Should return true if the visitor wants to visit the object with the specified featureId. This function is called before the type of the object is even known.

    Parameters

    • featureId: undefined | string | number

    Returns boolean

    Remarks

    Number ids are deprecated in favor of strings.

  • Should return true if the visitor wants to visit the line with the specified featureId.

    Parameters

    • featureId: undefined | string | number

    Returns boolean

    Remarks

    Number ids are deprecated in favor of strings.

  • Should return true if the visitor wants to visit the object with the specified featureId.

    Parameters

    • featureId: undefined | string | number

    Returns boolean

    Remarks

    Number ids are deprecated in favor of strings.

  • Should return true if the visitor wants to visit the point with the specified featureId.

    Parameters

    • featureId: undefined | string | number

    Returns boolean

    Remarks

    Number ids are deprecated in favor of strings.

Generated using TypeDoc