消除我特牛
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
360 B

4 weeks ago
# geohash
```js
// usage
chance.geohash()
chance.geohash({ length: 5 })
```
Generate a random geohash. [More details on what a geohash is](http://en.wikipedia.org/wiki/Geohash).
```js
chance.geohash()
=> 'h9xhn7y'
```
By default, includes 7 characters of accuracy. Can override with the `length` option.
```js
chance.geohash({ length: 5 })
=> 'dr0kr'
```