aloisdeniel / aloisdeniel/flutter_geocoder
Github link not updated in local.dart in the package
Open
- 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.