Search Place
class SearchPlace(val id: String, val name: String, val descriptionText: String?, val address: SearchAddress?, val resultTypes: List<SearchResultType>, val record: IndexableRecord?, val coordinate: Point, val routablePoints: List<RoutablePoint>?, val categories: List<String>?, val makiIcon: String?, val metadata: SearchResultMetadata?, val distanceMeters: Double?, val feedback: IncorrectSearchPlaceFeedback?) : Parcelable
Search place UI model to show in SearchPlaceBottomSheetView.
Constructors
Link copied to clipboard
fun SearchPlace(id: String, name: String, descriptionText: String?, address: SearchAddress?, resultTypes: List<SearchResultType>, record: IndexableRecord?, coordinate: Point, routablePoints: List<RoutablePoint>?, categories: List<String>?, makiIcon: String?, metadata: SearchResultMetadata?, distanceMeters: Double?, feedback: IncorrectSearchPlaceFeedback?)
Types
Functions
Link copied to clipboard
fun copy(id: String = this.id, name: String = this.name, descriptionText: String? = this.descriptionText, address: SearchAddress? = this.address, resultTypes: List<SearchResultType> = this.resultTypes, record: IndexableRecord? = this.record, coordinate: Point = this.coordinate, routablePoints: List<RoutablePoint>? = this.routablePoints, categories: List<String>? = this.categories, makiIcon: String? = this.makiIcon, metadata: SearchResultMetadata? = this.metadata, distanceMeters: Double? = this.distanceMeters, feedback: IncorrectSearchPlaceFeedback? = this.feedback): SearchPlace
Creates new SearchPlace from current instance.
Link copied to clipboard
Link copied to clipboard
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
List of points near coordinate, that can be used for more convenient navigation.