kidd3166 ab05f865ed 1.4 update | 2 yıl önce | |
---|---|---|
.. | ||
android | 2 yıl önce | |
ios | 3 yıl önce | |
lib | 2 yıl önce | |
test | 3 yıl önce | |
.gitignore | 3 yıl önce | |
.metadata | 3 yıl önce | |
CHANGELOG.md | 3 yıl önce | |
LICENSE | 3 yıl önce | |
README.md | 3 yıl önce | |
analysis_options.yaml | 3 yıl önce | |
pubspec.yaml | 3 yıl önce |
Flutter高德定位插件
amap_location_muka: ^0.1.1
在AndroidManifest.xml
添加如下代码
<meta-data android:name="com.amap.api.v2.apikey" android:value="你的key" />
在Info.plist
添加如下代码
// 默认
<key>NSLocationWhenInUseUsageDescription</key>
<string>App需要您的同意,才能访问位置</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>App需要您的同意,才能访问位置</string>
<key>amap_key</key>
<string>你的key</string>
// 导航 后台持续定位只需要location
<key>UIBackgroundModes</key>
<array>
<string>location</string>
<string>audio</string>
</array>
/// 在html文件中加入
<script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.15&key=你的key"></script>
/// 持续定位 [注意全局只能有一个持续监听]
stopLocation = await AmapLocation.start(
listen: (Location location) {
print(location.toJson());
},
);
/// 停止定位
stopLocation();
/// 单次定位
Location location = await AmapLocation.fetch();
print(location.toJson());
/// vibrate 属性只支持一次性设置 设置后除非卸载app否则不会变更
/// 另一种办法是变更chanlid 但对于定位来说 一般不会变更 暂时不考虑提供参数
class _MyAppState extends State<MyApp> with WidgetsBindingObserver {
@override
void initState() {
super.initState();
WidgetsBinding.instance.addObserver(this);
}
@override
void didChangeAppLifecycleState(AppLifecycleState state) async {
switch (state) {
case AppLifecycleState.inactive: // 处于这种状态的应用程序应该假设它们可能在任何时候暂停。
break;
case AppLifecycleState.resumed: // 应用程序可见,前台
await AmapLocation.disableBackground();
break;
case AppLifecycleState.paused: // 应用程序不可见,后台
await AmapLocation.enableBackground(assetName: 'app_icon', label: '正在获取位置信息', title: '高德地图',vibrate: false);
break;
default:
break;
}
}
}