neighborsOf static method

List<String> neighborsOf({
  1. required GeoValue center,
})

Returns the neighboring GeoHash for center.

centerに対して隣り合うGeoHashを返します。

Implementation

static List<String> neighborsOf({required GeoValue center}) {
  return _util.neighbors(center.geoHash);
}