package org.microg.nlp.api; import android.location.Location; import android.location.Address; interface GeocoderBackend { void open(); List
getFromLocation(double latitude, double longitude, int maxResults, String locale); List
getFromLocationName(String locationName, int maxResults, double lowerLeftLatitude, double lowerLeftLongitude, double upperRightLatitude, double upperRightLongitude, String locale); void close(); }