showPlaceDetails

suspend fun NavManagerService.showPlaceDetails(place: SearchResult, typeOfPlaceToAdd: String? = null): Result<Unit>

Shows UI with detailed information about a SearchResult. Note: if the SearchResult is part of the route, you should rather

Please call showMap first if there's a chance that some other UI (other than Search UI) is being shown at the moment.

Parameters

place

The search result to show details for.

typeOfPlaceToAdd

When non-null, the place details screen will show an option to save the place as the specified address type (FavoriteType.HOME or FavoriteType.WORK). Pass null (the default) to show the standard details screen without a save-address action.