Class IFeatureTileModel

java.lang.Object
com.luciad.models.featuretiles.IFeatureTileModel
All Implemented Interfaces:
Model, AutoCloseable

public final class IFeatureTileModel extends Object implements AutoCloseable, Model
Marker interface for tiled feature models.

You can create a tiled feature model in one of the the following ways:

  • Use a model decoder to decode tiled feature data encoded in a certain format.
Since:
2024.0
  • Method Details

    • finalize

      protected void finalize()
      Overrides:
      finalize in class Object
    • close

      public void close()
      Specified by:
      close in interface AutoCloseable
    • getModelMetadata

      @NotNull public ModelMetadata getModelMetadata()
      Description copied from interface: Model
      Returns the meta data for this model.
      Specified by:
      getModelMetadata in interface Model
      Returns:
      the meta data for this model.
    • queryBounds

      @Nullable public Bounds queryBounds()
      Description copied from interface: Model
      Returns the bounds of this model, if available.

      When the bounds of this model are not known, or if they are too expensive to calculate, this method may return no bounds.

      Specified by:
      queryBounds in interface Model
      Returns:
      the bounds of this model, if available.