geo2city:基本的离线反向地址解析 源码
geo2city 还使用了一个小型,可移植,离线搜索,ip和反向地理编码 ,基于的世界城市数据库的基本数据。 import { ip , search , reverse } from 'geo2city' ; search ( 'Berlin, Germany' ) . then ( console . log ) ; // result (undefined if not found) [ 52.5167 , 13.3833 ] reverse ( [ 52.52437 , 13.41053 ] ) . then ( console . log ) ; // result (undefined if not found) { latitude : 52.5167 , longitude : 13.3833 , iso2 : 'DE' , iso3 : 'DEU'
用户评论