@wfkit/maplocation
v1.0.1
Published
Map Location
Downloads
9
Readme
@wfkit/maplocation
Installation
pnpm i @wfkit/maplocation
Usage
import {
MAP_LOCATION_TYPE,
AMapLocation,
BMapLocation,
} from '@wfkit/maplocation'
// 使用高德地图
const mapLocation = new AMapLocation({
apiSecurityHost: '',
apiSecurityKey: '',
apiKey: '',
})
// 使用百度地图
const mapLocation = new BMapLocation({
apiSecurityHost: '',
apiKey: '',
})
// IP 定位
const result = await mapLocation.locate(MAP_LOCATION_TYPE.IP)
// GPS 定位
const result = await mapLocation.locate(MAP_LOCATION_TYPE.GPS)
License
MIT © YDWF.COM