RevgeocodeSuggestionRequest class

Used to call reverse geocoding API.

Annotations
  • @JsonSerializable(explicitToJson: true)

Constructors

RevgeocodeSuggestionRequest({double? latitude, double? longitude, int? count, String? language, dynamic radiusMeters})
New instance of RevgeocodeSuggestionRequest. latitude and longitude of the point of interest are required. count defaults to 10 and language defaults to ru.
RevgeocodeSuggestionRequest.fromJson(Map<String, dynamic> json)
factory
RevgeocodeSuggestionRequest.fromString(String latLon, {String delimiter = ','})
New instance may be created with query of String type instead of a pair of doubles. Tries parse latitude and longitude out of string and throws if fails.

Properties

count int?
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
language String?
getter/setter pair
latitude double?
getter/setter pair
longitude double?
getter/setter pair
radiusMeters int
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited