Suggest and auto fill title and description based on image location (#3323)

* Suggest and auto fill title and description based on image location

* with java docs
This commit is contained in:
Vivek Maskara 2020-01-29 03:24:37 -07:00 committed by GitHub
parent afdeaae075
commit 2290545bc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 92 additions and 3 deletions

View file

@ -91,7 +91,7 @@ public class NearbyPlaces {
* @return list of places obtained
* @throws IOException if query fails
*/
private List<Place> getFromWikidataQuery(LatLng cur, String lang, double radius) throws IOException {
public List<Place> getFromWikidataQuery(LatLng cur, String lang, double radius) throws IOException {
return okHttpJsonApiClient.getNearbyPlaces(cur, lang, radius).blockingSingle();
}
}