國內flutter開發使用google地圖不方便,目前只有高德支持flutter,雖然功能不是很全,可是基本的地圖、定位、導航功能已經有了。android
1 pubspec.yaml文件中添加git
amap_base: ^0.2.12複製代碼
以後運行api
flutter packages get
複製代碼
2 獲取發佈版和調試版SHA1,參考flutter填坑記錄(更新中)的第七個問題bash
3 申請高德地圖key,官網步驟app
4 配置keyasync
<application
android:name="io.flutter.app.FlutterApplication"
android:label="flutter_ui_framework"
android:icon="@mipmap/ic_launcher">
<meta-data
android:name="com.amap.api.v2.apikey"
android:value="39d5d4f31ea7f3993e7a0c2824c71ec5"/>//你的key
......複製代碼
5 示例代碼,定位獲取經緯度ide
import 'package:amap_base/amap_base.dart';
final _amapLocation = AMapLocation();
var _result = '';
//初始化定位監聽
void _initLocation() async {
_amapLocation.init();
final options = LocationClientOptions(
isOnceLocation: false,
locatingWithReGeocode: true,
);
if (await Permissions().requestPermission()) {
_amapLocation.startLocate(options).listen((_) => setState(() {
_result =
'座標:${_.longitude},${_.latitude} @ ${DateTime.now().hour}:${DateTime.now().minute}:${DateTime.now().second}';
print(_result);
}));
} else {
setState(() {
_result = "無定位權限";
});
}
}
複製代碼