SPSmartMapBottomSheetViewState

Objective-C

NS_ENUM(NSInteger, SPSmartMapBottomSheetViewState) {
    /* Hidden - Bottom sheet is not visible */
    SPSmartMapBottomSheetViewStateHidden,
    /* Min height - Only search bar is visible*/
    SPSmartMapBottomSheetViewStateCollapsed,
    /* Preferred height - Search bar and recommended categories are visible*/
    SPSmartMapBottomSheetViewStateHalfExpanded,
    /* Expanded to top - Whole bottom sheet is visible */
    SPSmartMapBottomSheetViewStateExpanded
}

Swift

enum SPSmartMapBottomSheetViewState : Int, @unchecked Sendable

Undocumented