-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EV Offline Search; Search SDK 2.8.0-rc.1 (#309)
* Dependencies bump * Initial types declaration * EvSearchOptions * Metadata for offline search results * Use Mapbox Common experimental annotation * Bump dependencies versions * EV Search Sample Activity * Update changelog; Version bump * Fix changelog dependencies * Worldviews support
- Loading branch information
1 parent
0b4c6f1
commit eafe8f3
Showing
82 changed files
with
4,519 additions
and
399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 0 additions & 19 deletions
19
MapboxSearch/base/src/main/java/com/mapbox/search/base/ExperimentalMapboxSearchAPI.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
MapboxSearch/base/src/main/java/com/mapbox/search/base/factory/BusinessDetails.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
@file:OptIn(MapboxExperimental::class) | ||
|
||
package com.mapbox.search.base.factory | ||
|
||
import androidx.annotation.RestrictTo | ||
import com.mapbox.annotation.MapboxExperimental | ||
import com.mapbox.search.base.core.CoreBusinessDetails | ||
import com.mapbox.search.base.mapToPlatform | ||
import com.mapbox.search.common.BusinessDetails | ||
|
||
@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP_PREFIX) | ||
fun CoreBusinessDetails.mapToPlatform(): BusinessDetails { | ||
return BusinessDetails( | ||
name = name, | ||
website = website, | ||
logo = logo?.mapToPlatform(), | ||
) | ||
} |
Oops, something went wrong.