1.0.3 • Published 6 years ago

vue-tencent-geolocation v1.0.3

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

vue-tencent-geolocation

在vue中使用的腾讯定位

How to use

npm i vue-tencent-geolocation -S

const key = '<申请的腾讯定位sdk>';

const app = '<申请的app名字>';

const geolocation = new Geolocation(key, app);

geolocation.getLocation(successCallback, errorCallback);

function successCallback(position) {
    console.log(position)
}

function errorCallback() {
    console.log('error')
}