aloisdeniel / aloisdeniel/flutter_geocoder

Github link not updated in local.dart in the package

Open
#84 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Dart
Stars
192
Forks
182
PR merge metrics
No merged PRs in 30d

Description

github link currently points to github.com/aloisdeniel/geocoder
```

/// Geocoding and reverse geocoding through built-lin local platform services.
class LocalGeocoding implements Geocoding {
static const MethodChannel _channel = MethodChannel('github.com/aloisdeniel/geocoder');

Future> findAddressesFromCoordinates(Coordinates coordinates) async {
Iterable addresses = await _channel.invokeMethod('findAddressesFromCoordinates', coordinates.toMap());
return addresses.map((x) => Address.fromMap(x)).toList();
}
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.