geoview-core - v2.2.0
    Preparing search index...

    Type Alias TypeHoverFeatureInfo

    TypeHoverFeatureInfo:
        | {
            featureIcon?: string;
            fieldInfo?: TypeFieldEntry;
            geoviewLayerType: TypeGeoviewLayerType;
            layerPath: string;
            nameField?: string;
        }
        | undefined
        | null

    Represents hover feature information displayed in the map tooltip.

    Can be an object with layer type and field info, undefined, or null.

    Type Declaration

    • {
          featureIcon?: string;
          fieldInfo?: TypeFieldEntry;
          geoviewLayerType: TypeGeoviewLayerType;
          layerPath: string;
          nameField?: string;
      }
      • OptionalfeatureIcon?: string

        The icon associated with the feature, if any.

      • OptionalfieldInfo?: TypeFieldEntry

        The field entry displayed in the tooltip.

      • geoviewLayerType: TypeGeoviewLayerType

        The GeoView layer type of the hovered feature.

      • layerPath: string

        The layer path.

      • OptionalnameField?: string

        The name field used as the tooltip label.

    • undefined
    • null