SDK使用-手机 高精度
请向问北平台申请key和secret
Demo
安装
settings.gradle 添加 本地 libs文件夹
pluginManagement {
repositories {
xxx
flatDir {
dirs("libs")
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
xxx
flatDir {
dirs("libs")
}
}
}
拷贝Demo中 libs下的aar
gradle 文件中添加依赖
AndroidManifest.xml 中添加广播
<application>
...
<receiver android:name="com.esurvey.sdk.out.service.MobileHighLocationReceiver"
android:exported="true">
<intent-filter>
<action android:name="cn.programmer.CUSTOM_INTENT" />
<action android:name="cn.programmer.CUSTOM_INTENT_1" />
<action android:name="cn.programmer.CUSTOM_INTENT_LOCATION" />
</intent-filter>
</receiver>
</application>
使用手机高精度
实例化ESurvey对象
class MainActivity : ComponentActivity() {
val instance = ESurvey.getInstance()
...
}
设置key (v1.5新增)
运行时权限请求 (外部存储权限,所有文件访问权限)
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
tools:ignore="ScopedStorage" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
requestLegacyExternalStorage
<application
...
android:requestLegacyExternalStorage="true">
....
</application>
添加位置信息监听器(与天线版本是同一个)
LocationState对象解析
参数名 | 解析 | 备注 |
---|---|---|
lon | 经度 | |
lat | 纬度 | |
height | 高程 | |
yInaccuracies | 高程误差 | |
xInaccuracies | 水平误差 | |
locationShow | 格式化后的经纬度显示,保留7位小数后拼在了一起 | String.format("%.7f", lat) + " , " + String.format("%.7f", lon) |
pdop | pdop | |
satelliteNum | 解算卫星数量 | |
locationStatus | 定位状态 | 1: 单点解 2: 伪距差分 4: 固定解 5: 浮点解 6:组合定位 |
locationStatusShow | 解析后的定位状态,返回中文 | 如:固定解 |
source | 数据来源 | 1: 外接天线 2: 手机自带Rtk |
antennaDataSource | 天线数据来源 | 1: Type-c 2: 蓝牙 |
isNetworkDiffSync | 网络查分数据是否参与了解算 | true: 参与了解算 false: 未参与解算-数据仅来源FM |
gga | gga | gga原始数据 |
nrtk014 | 天线原始数据 | 天线原始数据 |