You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
API pass only radius value when we call getSimilarNearAddresses, but Mapbox not support search of simmilar address and we use Geocoder of Android OS. This implementation require min/max lat/lng for search, not just radius.
For now implemented this logic:
// TODO calculate bounds from radius
@Suppress("MagicNumber")
val radiusLatitude = maxRadius * 0.001
@Suppress("MagicNumber")
val radiusLongitude = maxRadius * 0.001
It should be fixed
The text was updated successfully, but these errors were encountered:
API pass only radius value when we call
getSimilarNearAddresses
, but Mapbox not support search of simmilar address and we use Geocoder of Android OS. This implementation require min/max lat/lng for search, not just radius.For now implemented this logic:
It should be fixed
The text was updated successfully, but these errors were encountered: