osm_nominatim

Creator: coderz1093

Last updated:

Add to Cart

Description:

osm nominatim

A library to perform OSM Nominatim searches also supporting reverse searches.
The documentation comments are mostly copied from https://nominatim.org/release-docs/latest.
Usage #
import 'package:osm_nominatim/osm_nominatim.dart';

Future main() async {
final searchResult = await Nominatim.searchByName(
query: 'bakery in berlin wedding',
limit: 1,
addressDetails: true,
extraTags: true,
nameDetails: true,
);
final reverseSearchResult = await Nominatim.reverseSearch(
lat: 50.1,
lon: 6.2,
addressDetails: true,
extraTags: true,
nameDetails: true,
);
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.