SDK
SDK Java v2.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

geopos #

Returns the positions (longitude, latitude) of the provided key's members (see geoadd).

[Redis documentation]


geopos(key, members, [options], callback) #

ArgumentsTypeDescription
keystringKey identifier
membersarrayList of geospatial points contained in the key
optionsJSON ObjectOptional parameters
callbackfunctionCallback

Options #

OptionTypeDescriptionDefault
queuablebooleanMake this request queuable or nottrue

Callback Response #

Returns an array of longitude-latitude pairs, in the same order as the provided members list.

Usage #

String[] members = {"Palermo", "Catania"};
kuzzle.memoryStorage.geopos("key", members, new ResponseListener<Double[][]>() {
  @Override
  public void onSuccess(Double[][] positions) {
    // callback called once the action has completed
  }
  @Override
  public void onError(JSONObject error) {
  }
});

Callback response:

[[13.361389, 38.115556], [15.087269, 37.502669]]