Package-level declarations

Types

Link copied to clipboard

Callback used to get the created Address

Link copied to clipboard
data class ApiErrorData(val message: String)

Class containing information about error returned by the BeMAP API

Link copied to clipboard
data class AutocompleteResult(val elemType: String?, val place: String, val coordinate: GeoPoint?, val addressLabel: String?, var entrances: List<EntrancePosition>?)

Represents a single autocomplete suggestion

Link copied to clipboard
data class EntrancePosition(val lon: Double, val lat: Double)
Link copied to clipboard
Link copied to clipboard
data class MapMatchedPointResult(val sourceGeoPoint: GeoPoint, val mapMatchedWaypoint: Waypoint?, val postalAddress: Address?)

Data class that defines a result from GeoDecoder.mapMatch.

Link copied to clipboard
data class NearbyEVSearchResult(val address: Address, val distance: Long = 0, val compatibleChargingPoints: Array<ChargingPoint>, val nbEffectiveChargingPoints: Int) : NearbySearchResult

Data class that defines a result from ReverseSearchEngine.searchAround using an EvSearchFilter

Link copied to clipboard

Defines callback functions that allows a client to be notified about the GeoDecoder.searchAround results

Link copied to clipboard
open class NearbySearchResult(val address: Address, val distance: Long = 0)

class that defines a result from ReverseSearchEngine.searchAround.

Link copied to clipboard
interface SearchCallback

Defines callback functions that allow a client to be notified about results of using geocoder search engine.