MoveGeocodeError
Status returned by a geo-lookup.
enum class MoveGeocodeError {
RESOLVE_FAILED,
SERVICE_UNREACHABLE,
THRESHOLD_REACHED,
}enum MoveGeocodeError: Error {
case resolveFailed
case thresholdReached
case serviceUnreachable
}import 'package:movesdk/io/dolphin/move/move_geocode_result.dart';// Some codeenum MoveGeocodeError {
resolveFailed,
thresholdReached,
serviceUnreachable,
}MoveGeocodeError
resolveFailed
Error indicating that the passed coordinates can't be resolved.
thresholdReached
Maximum defined threshold reached. This threshold is not changeable. Android: 60 times in 1 hour.
serviceUnreachable
Error indicating that MOVE SDK server is unreachable.
Last updated