UNPKG

@wayz/react-gl

Version:

React Component for DeckGL, Base on AMap, Mapbox GL

19 lines (18 loc) 457 B
import Geohash from './latlon-hash'; export function getGeoHashPolygon(hash) { // 西南, 东北点坐标 if (!hash || typeof hash !== 'string') return; var _a = Geohash.bounds(hash), sw = _a.sw, ne = _a.ne; if (!sw || !ne) return; return [ [ [sw.lon, sw.lat], [sw.lon, ne.lat], [ne.lon, ne.lat], [ne.lon, sw.lat], [sw.lon, sw.lat], ], ]; }