Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 692 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 692 Bytes

OpenStreetMap Nominatim client for the JVM

Java/Maven CI

❗ This library is in an early development phase: expect stability issues and breaking changes.

Any help is welcome.

Getting started

Create a client

import net.dericbourg.nominatim.client.NominatimClient

val client = NominatimClient.create()

Perform a request

import net.dericbourg.nominatim.client.SearchRequest

val searchResponse = client.search(
    SearchRequest.query("tour eiffel, paris")
)