专业版为付费插件, 如有需要请联系qq 382146139
专业版为付费插件, 如有需要请联系qq 382146139
专业版为付费插件, 如有需要请联系qq 382146139
名称 | 描述 | 仓库 |
---|---|---|
高德地图 | 高德地图地图组件, 提供地图控件 | |
高德定位 | 高德地图定位组件, 提供独立的定位功能 | |
高德搜索 | 高德地图搜索组件, 提供poi搜索等功能 | |
百度地图 | 百度地图, 包含了地图控件, 定位以及搜索poi等功能 | |
百度人脸识别 | 百度人脸识别, 提供活体检测等功能 | |
网易直播 | 网易直播推流组件 | |
网易云信 | 网易云信 IM组件 | |
腾讯直播 | 腾讯直播, 包含推流组件和播放组件 | |
腾讯IM | 腾讯IM组件 | |
腾讯地图 | 腾讯地图组件 | |
讯飞语音合成 | 腾讯语言合成组件, 提供文字转语言功能 | |
极光统计 | 极光统计组件, 提供异常上报等功能 | |
阿里云RTC | 阿里云实时音视频 | |
环信 | 环信IM | |
未完待续... | 如有其它需求, 请联系qq 382146139 |
dependencies:
flutter:
sdk: flutter
bmap_map_fluttify: ^x.x.x
- 在AndroidManifest.xml的application标签下配置app key:
<application>
<meta-data
android:name="com.baidu.lbsapi.API_KEY"
android:value="FQxxxxxxxxxxxxxxxxxxxxxxx2R"/>
</application>
- 注意在app/build.gradle的android块中配置签名信息, 并在buildTypes块中指定签名信息, 否则将无法匹配到你在百度后台配置的appkey, 例如:
android {
signingConfigs {
release {
keyAlias 'bmap_map_test'
keyPassword 'bmap_map_test'
storeFile file('../bmap_map_test.jks')
storePassword 'bmap_map_test'
}
}
buildTypes {
debug {
signingConfig signingConfigs.release
}
profile {
signingConfig signingConfigs.release
}
release {
signingConfig signingConfigs.release
}
}
}
- 使用地图需要使能UiKitView, 在Info.plist中添加:
<key>io.flutter.embedded_views_preview</key>
<string>YES</string>
- 百度地图要求项目配置BundleDisplayName, 在Info.plist中添加:
<key>CFBundleDisplayName</key>
<string>填入你的名称</string>
import 'package:bmap_map_fluttify/bmap_map_fluttify.dart';
参考wiki.
QQ群 |
---|
显示地图 | 社区版 | 专业版 |
---|---|---|
设置地图中心点 | ✅ | ✅ |
设置我的位置数据 | ✅ | ✅ |
自定义地图 | ☑️ | ✅ |
截图 | ☑️ | ✅ |
在地图上绘制 | 社区版 | 专业版 |
---|---|---|
批量添加marker | ✅ | ✅ |
设置marker点击监听事件 | ✅ | ✅ |
把marker列表从地图上移除 | ✅ | ✅ |
清除地图上所有覆盖物 | ✅ | ✅ |
添加折线 | ✅ | ✅ |
添加多边形 | ✅ | ✅ |
添加圆 | ✅ | ✅ |
设置marker拖动监听事件 | ✅ | ✅ |
与地图交互 | 社区版 | 专业版 |
---|---|---|
放大一个等级 | ✅ | ✅ |
缩小一个等级 | ✅ | ✅ |
选择显示图层 | ✅ | ✅ |
显示路况信息 | ✅ | ✅ |
缩放手势使能 | ✅ | ✅ |
滑动手势使能 | ✅ | ✅ |
旋转手势使能 | ✅ | ✅ |
倾斜手势使能 | ✅ | ✅ |
设置缩放大小 | ✅ | ✅ |
获取当前缩放大小 | ✅ | ✅ |
设置缩放是否以中心点为锚点 | ✅ | ✅ |
获取地图中心点 | ✅ | ✅ |
设置地图移动监听事件 | ✅ | ✅ |
设置logo位置 | ☑️ | ✅ |
设置地图内间距 | ☑️ | ✅ |
是否显示指南针 | ☑️ | ✅ |
调整覆盖物至同一屏幕中显示 | ☑️ | ✅ |
控制底图标注显示 | ☑️ | ✅ |
限制地图的显示范围 | ☑️ | ✅ |
Copyright (C) 2020 yohom
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.