-
Notifications
You must be signed in to change notification settings - Fork 0
Search street by query string
Mapmd edited this page May 10, 2019
·
6 revisions
More information about request,response and other search street
QuerySearch search = new QuerySearch(new QuerySearch.OnCallbackResult() {
@Override
public void onSuccess(JsonObject result) {
// processing data
}
@Override
public void onFailure(Throwable throwable) {
}
});
or register listener
search.registerOnSearchListener(new QuerySearch.OnCallbackResult() {
@Override
public void onSuccess(JsonObject result) {
// processing data
}
@Override
public void onFailure(Throwable throwable) {
}
});
Call function
search.sendRequest("calea orheiului");