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.

geodist #

Returns the distance between two geospatial members of a key (see geoadd). The returned distance is expressed in meters by default.

[Redis documentation]


geodist(key, member1, member2, [options], callback) #

ArgumentsTypeDescription
keystringKey identifier
member1stringName of the first geospatial point
member2stringName of the second geospatial point
optionsJSON ObjectOptional parameters
callbackfunctionCallback

Options #

OptionTypeDescriptionDefault
queuablebooleanMake this request queuable or nottrue
unitstringDistance unit.
Allowed values: m, km, mi, ft
m

Callback Response #

Returns the calculated distance between the two provided geospatial points.

Usage #

kuzzle.memoryStorage.geodist("key", "Palermo", "Catania", new ResponseListener<double>() {
  @Override
  public void onSuccess(double distance) {
    // callback called once the action has completed
  }
  @Override
  public void onError(JSONObject error) {
  }
});

Callback response:

166274.1516