amazon_location_flutter 0.1.0 copy "amazon_location_flutter: ^0.1.0" to clipboard
amazon_location_flutter: ^0.1.0 copied to clipboard

Dart/Flutter client for Amazon Location Service GeoPlaces API (autocomplete + geocode).

amazon_location_flutter #

Dart/Flutter client for the Amazon Location Service GeoPlaces API (autocomplete + geocode).

Uses a static API key for authentication — no Cognito Identity Pool or SigV4 signing required.

Usage #

final client = AmazonLocationClient(
  apiKey: 'your-api-key',
  region: 'ap-southeast-2',
);

// Autocomplete
final suggestions = await client.autocomplete('Sydney Opera');

// Geocode
final result = await client.geocode(suggestions.first.label);
print(result?.position); // LatLng(latitude: -33.8568, longitude: 151.2153)

client.dispose();
0
likes
150
points
282
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Dart/Flutter client for Amazon Location Service GeoPlaces API (autocomplete + geocode).

Homepage

License

BSD-3-Clause (license)

Dependencies

flutter, http

More

Packages that depend on amazon_location_flutter