/dart-geohash

Geohashing library for dart

Primary LanguageDartBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

geohash

Build Status Coverage Status

A library for geohashing. This is used by elasticsearch and others for geo-queries.

Usage

A simple usage example:

import 'package:geohash/geohash.dart';

main() {
  var encoded = Geohash.encode(40,-120);
  var latLng = Geohash.decode(encoded);
}

Features and bugs

Please file feature requests and bugs at the issue tracker.