Last updated:
0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.