geohash()

更新日: 2018-09-04

geohash()

// 使い方
chance.geohash()
chance.geohash({ length: 5 })

Geohashをランダムで返します。 詳しくはこちらを参照してください。

chance.geohash()
=> 'h9xhn7y'

デフォルトでは7文字の精度で返します。

lengthを指定すると、その長さの精度で返します。

chance.geohash({ length: 5 })
=> 'dr0kr'

デモ

ボタンを押すと、Geohashを5文字の精度でランダムに表示します。

結果:
JavaScript
var button = document.getElementById('get-result');
button.addEventListener('click', function() {
  var chance = new Chance();
  document.getElementById('result').innerHTML = chance.geohash({ length: 5 });
}, false);
HTML
<button id="get-result">結果表示</button>
<div>
  <span>結果:</span>
  <span id="result"></span>
</div>

© 2015 Victor Quinn Released under the MIT license

このコンテンツはVictor Quinn(victorquinn)によるChanceドキュメントを翻訳/改変したものです。