搜索
您的当前位置:首页正文

React Native 高德地图定位模块 react-nati

来源:二三娱乐
image

用法

  1. 获取 Key:
import { Geolocation } from "react-native-amap-geolocation"

await Geolocation.init({
  ios: "9bd6c82e77583020a73ef1af59d0c759",
  android: "043b24fe18785f33c491705ffe5b6935"
})

Geolocation.setOptions({
  interval: 8000,
  distanceFilter: 20
})

Geolocation.addLocationListener(location => console.log(location))
Geolocation.start()

接口文档

Top