根据省市区判断填写的是否正确以及返回坐标
githup:https://github.com/nnliang/Inspection_area
安装
npm install Inspection_area --save
使用
const Inspection = require('Inspection_area');
方法
check(province, city, [area])
返回类型:boolean
示例:
let $check = Inspecte.check('北京市', '北京市', '朝阳区');
console.log($check) // true
typeof $check // boolean
coordinate(province, [city], [area])
返回类型: Object
示例:
let $coordinate = Inspecte.coordinate('北京市')
console.log($coordinate) // { lng: 116.39564503787867, lat: 39.92998577808024 }
typeof $coordinate // object
注意事项
本文在查询经纬度使用的百度地图API,有次数限制,请阅读源码并替换
学习