SDK
SDK Javascript v5.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) #

Arguments Type Description
key string Key identifier
members array List of geospatial points contained in the key
options JSON Object Optional parameters
callback function Callback

Options #

Option Type Description Default
queuable boolean Make this request queuable or not true

Callback Response #

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

Usage #

Copied to clipboard!
// Using callbacks (NodeJS or Web Browser)
kuzzle.memoryStorage.geopos('key', ['Palermo', 'Catania'], function (err, positions) {
  // callback called once the action has completed
});
// Using promises (NodeJS only)
kuzzle.memoryStorage.geoposPromise('key', ['Palermo', 'Catania'])
  .then(positions => {
    // resolved once the action has completed
  });

Callback response:

Copied to clipboard!
[[13.361389, 38.115556], [15.087269, 37.502669]]