Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented isPresent on Android package #204

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions geocoding_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.2.0

* Exposes isPresent() call that returns true if there is a geocoder implementation present that may return results.

## 3.1.0

* Fixes deprecation build warnings.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@ void setLocaleIdentifier(@Nullable Locale locale) {
this.locale = locale;
}

/**
* Returns true if there is a geocoder implementation present that may return results.
* If true, there is still no guarantee that any individual geocoding attempt will succeed.
*
*/
boolean isPresent() {
return Geocoder.isPresent();
}

/**
* Returns a list of Address objects matching the supplied address string.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ public void onMethodCall(
case "placemarkFromCoordinates":
onPlacemarkFromCoordinates(call, result);
break;
case "isPresent":
onIsPresent(call, result);
break;
default:
result.notImplemented();
break;
Expand Down Expand Up @@ -203,4 +206,9 @@ public void onError(String errorMessage) {
}
});
}

private void onIsPresent(final MethodCall call, final Result result) {
boolean isPresent = geocoding.isPresent();
result.success(isPresent);
}
}
17 changes: 17 additions & 0 deletions geocoding_android/example/lib/plugin_example/geocode_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,23 @@ class _GeocodeWidgetState extends State<GeocodeWidget> {
});
}),
),
const Padding(
padding: EdgeInsets.only(top: 8),
),
Center(
child: ElevatedButton(
child: Text('Is present'),
onPressed: () {
GeocodingAndroid().isPresent().then((isPresent) {
var output = isPresent
? "Geocoder is present"
: "Geocoder is not present";
setState(() {
_output = output;
});
});
}),
),
Expanded(
child: SingleChildScrollView(
child: Container(
Expand Down
14 changes: 14 additions & 0 deletions geocoding_android/lib/geocoding_android.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,20 @@ class GeocodingAndroid extends GeocodingPlatform {
}
}

@override
Future<bool> isPresent() async {
try {
final isPresent = await _channel.invokeMethod(
'isPresent',
);

return isPresent;
} on PlatformException catch (e) {
_handlePlatformException(e);
rethrow;
}
}

@override
Future<List<Placemark>> placemarkFromCoordinates(
double latitude,
Expand Down
2 changes: 1 addition & 1 deletion geocoding_android/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: geocoding_android
description: A Flutter Geocoding plugin which provides easy geocoding and reverse-geocoding features.
version: 3.1.0
version: 3.2.0
repository: https://github.com/baseflow/flutter-geocoding/tree/main/geocoding_android
issue_tracker: https://github.com/Baseflow/flutter-geocoding/issues

Expand Down