AMap Web Service
A Flutter package that packaging amap web service.
usage
To use this package, add amap_webservice as a dependency in your pubspec.yaml file.
example
final response = await GeocodeService(
apiKey: "YOUR KEY HERE",
).geocode("YOUR ADDRESS HERE");
final response = await GeocodeService(
apiKey: "YOUR KEY HERE",
).reGeocode("YOUR LOCATION HERE");// (longitude,latitude)
See the example directory for a complete sample app.