使用百度地图开发一个导航定位demo-android学习之旅(77)
首先介绍如何导入百度地图
步骤(其实官方文档写的很清楚了)http://developer.baidu.com/map/index.php?title=androidsdk/guide/introduction
1.注册开发者账号
2.注册你的应用,登陆控制台,然后输入数字签名和包名,得到开发Id
3. 下载android sdk进行配置,我用的是Android studio,配置步骤是,在app底下的libs下导入,没有的话新建,在src/main/目录下新建jniLibs目录,放下那些搜文件,arm64-v8a,armeabi,armeabi-v7a,x86,x86_64,一共5个文件,这个版本目前是这样,参考网址http://developer.baidu.com/map/index.php?title=androidsdk/guide/buildproject
4.在Manifest添加标签
<application>
<meta-data
android:name="com.baidu.lbsapi.API_KEY"
android:value="开发者 key" />
</application>
5.添加所需权限
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" />
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
6.在布局中加入这个控件
<com.baidu.mapapi.map.MapView
android:id="@+id/bmapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true" />
7.在类中初始化代码
public class MainActivity extends Activity {
MapView mMapView = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//在使用SDK各组件之前初始化context信息,传入ApplicationContext
//注意该方法要再setContentView方法之前实现
SDKInitializer.initialize(getApplicationContext());
setContentView(R.layout.activity_main);
//获取地图控件引用
mMapView = (MapView) findViewById(R.id.bmapView);
}
@Override
protected void onDestroy() {
super.onDestroy();
//在activity执行onDestroy时执行mMapView.onDestroy(),实现地图生命周期管理
mMapView.onDestroy();
}
@Override
protected void onResume() {
super.onResume();
//在activity执行onResume时执行mMapView. onResume (),实现地图生命周期管理
mMapView.onResume();
}
@Override
protected void onPause() {
super.onPause();
//在activity执行onPause时执行mMapView. onPause (),实现地图生命周期管理
mMapView.onPause();
}
}
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
我写了一个demo,实现了查看卫星地图,实时路况,以及定位和基于android传感器的方向导航
github地址
https://github.com/fengsehng/BaiduMapDemoTest
截图
public class FlyControlBaiduSdk extends Activity{
private MapView mapView;
private BaiduMap mBaiduMap;
private Button normal,site,traffic,myLocation;
private Context context;
//定位相关
private LocationClient locationClient;
private MyLocationListener myLocationListener;
private boolean isFirstIn = true;
private double myLatitude;
private double myLongtitude;
//自定义定位图标相关
private BitmapDescriptor bitmapDescriptor;
private float mCurrentX;
//传感器相关
private MyOrientationlistener mMyOrientationListener;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
SDKInitializer.initialize(getApplicationContext());
setContentView(R.layout.flycontrol_baidu);
this.context = this;
initViews();
initLocation();
normal.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mBaiduMap.setMapType(BaiduMap.MAP_TYPE_NORMAL);
}
});
site.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mBaiduMap.setMapType(BaiduMap.MAP_TYPE_SATELLITE);
}
});
traffic.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (mBaiduMap.isTrafficEnabled()){
mBaiduMap.setTrafficEnabled(false);
}else {
mBaiduMap.setTrafficEnabled(true);
}
}
});
myLocation.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
LatLng latLng = new LatLng(myLatitude,myLongtitude);
MapStatusUpdate msu = MapStatusUpdateFactory.newLatLng(latLng);
mBaiduMap.animateMapStatus(msu);
}
});
}
private void initViews(){
mapView = (MapView) findViewById(R.id.bmapView);
MapStatusUpdate msu = MapStatusUpdateFactory.zoomTo(15.0f);
mBaiduMap = mapView.getMap();
mBaiduMap.setMapStatus(msu);
normal = (Button) findViewById(R.id.normal);
site = (Button) findViewById(R.id.site);
traffic = (Button) findViewById(R.id.traffic);
myLocation = (Button) findViewById(R.id.myLocation);
}
private void initLocation(){
locationClient = new LocationClient(this);
myLocationListener = new MyLocationListener();
locationClient.registerLocationListener(myLocationListener);
LocationClientOption locationClientOption = new LocationClientOption();
locationClientOption.setCoorType("bd09ll");
locationClientOption.setIsNeedAddress(true);
locationClientOption.setOpenGps(true);
locationClientOption.setScanSpan(1000);
locationClient.setLocOption(locationClientOption);
//初始化图标
bitmapDescriptor = BitmapDescriptorFactory.fromResource(R.drawable.navii);
mMyOrientationListener = new MyOrientationlistener(this);
mMyOrientationListener.setOnOrientationListener(new MyOrientationlistener.OnOrientationListener() {
@Override
public void onOrientationChange(float x) {
mCurrentX = x;
}
});
}
//初始化定位
@Override
protected void onStart() {
super.onStart();
//开始定位
mBaiduMap.setMyLocationEnabled(true);
if (!locationClient.isStarted()){
locationClient.start();}
//开始方向传感器
mMyOrientationListener.start();
}
@Override
protected void onResume() {
super.onResume();
mapView.onResume();
}
@Override
protected void onPause() {
super.onPause();
mapView.onPause();
}
//停止定位
@Override
protected void onStop() {
super.onStop();
//停止定位
mBaiduMap.setMyLocationEnabled(false);
locationClient.stop();
//停止方向传感器
mMyOrientationListener.stop();
}
@Override
protected void onDestroy() {
super.onDestroy();
mapView.onDestroy();
}
//定位监听类
private class MyLocationListener implements BDLocationListener{
@Override
public void onReceiveLocation(BDLocation bdLocation) {
MyLocationData myLocationData = new MyLocationData.Builder().accuracy(bdLocation.getRadius())//
.direction(mCurrentX).latitude(bdLocation.getLatitude()).longitude(bdLocation.getLongitude()).build();
mBaiduMap.setMyLocationData(myLocationData);
//设置经纬度
myLatitude = bdLocation.getLatitude();
myLongtitude = bdLocation.getLongitude();
//设置定位图标
MyLocationConfiguration configuration = new MyLocationConfiguration(MyLocationConfiguration.LocationMode.NORMAL,true,bitmapDescriptor);
mBaiduMap.setMyLocationConfigeration(configuration);
if (isFirstIn){
LatLng latLng = new LatLng(bdLocation.getLatitude(),bdLocation.getLongitude());
MapStatusUpdate msu = MapStatusUpdateFactory.newLatLng(latLng);
mBaiduMap.animateMapStatus(msu);
isFirstIn = false;
Toast.makeText(context,bdLocation.getAddrStr(),Toast.LENGTH_LONG).show();
}
}
}
}
传感器类代码
public class MyOrientationlistener implements SensorEventListener{
private SensorManager mSensorManager;
private Sensor mSensor;
private Context mContext;
private float lastX;
public MyOrientationlistener(Context context){
this.mContext = context;
}
public void start(){
mSensorManager = (SensorManager) mContext.getSystemService(Context.SENSOR_SERVICE);
if (mSensorManager != null){
mSensor = mSensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION);
}
if (mSensor != null){
mSensorManager.registerListener(this,mSensor,SensorManager.SENSOR_DELAY_UI);
}
}
public void stop(){
mSensorManager.unregisterListener(this);
}
@Override
public void onSensorChanged(SensorEvent event) {
if (event.sensor.getType() == Sensor.TYPE_ORIENTATION){
float x = event.values[SensorManager.DATA_X];
if (Math.abs(x-lastX) > 1.0){
if (onOrientationListener != null){
onOrientationListener.onOrientationChange(x);
}
}
lastX = x;
}
}
@Override
public void onAccuracyChanged(Sensor sensor, int accuracy) {
}
private OnOrientationListener onOrientationListener;
public void setOnOrientationListener(OnOrientationListener onOrientationListener) {
this.onOrientationListener = onOrientationListener;
}
public interface OnOrientationListener{
void onOrientationChange(float x);
}
}
布局代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<com.baidu.mapapi.map.MapView
android:id="@+id/bmapView"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="10"
android:clickable="true" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal">
<Button
android:text="我的位置"
android:id="@+id/myLocation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/button_back"/>
<Button
android:text="普通地图"
android:id="@+id/normal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/button_back"/>
<Button
android:text="卫星地图"
android:id="@+id/site"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/button_back"/>
<Button
android:text="实时交通"
android:id="@+id/traffic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/button_back"/>
</LinearLayout>
</LinearLayout>
使用百度地图开发一个导航定位demo-android学习之旅(77)的更多相关文章
- Android学习——百度地图开发定位与显示Demo
百度地图给我们提供了很丰富的API供我们进行二次开发.百度地图的SDK与定位SDK在今年6月份进行了更新. 地图更新为3.0,定位更新为4.2.百度说:这次更新对接口有了较大部分的调整,与之前版本号不 ...
- [android] 百度地图开发 (两).所在地的城市定位和城市POI搜索
一个. 百度地图城市位置和POI搜索知识 上一篇文章"百度地图开发(一)"中讲述了怎样申请百度APIKey及解决显示空白网格的问题.该篇文章主要讲述怎样定位城市位置.定 ...
- Android studio 百度地图开发(3)地图导航
Android studio 百度地图开发(3)地图导航 email:chentravelling@163.com 开发环境:win7 64位,Android Studio,请注意是Android S ...
- Android studio 百度地图开发(2)地图定位
Android studio 百度地图开发(2)地图定位 email:chentravelling@163.com 开发环境:win7 64位,Android Studio,请注意是Android S ...
- C#的百度地图开发(四)前端显示与定位
原文:C#的百度地图开发(四)前端显示与定位 有了这些定位信息,那要如何在前端的页面上显示出来呢?这需要用到百度地图的JavaScript的API.下面是示例代码. 前端代码 <%@ Page ...
- 百度地图开发-引入地图SDK并配置 02
百度地图开发-引入地图SDK并配置 02 通过上一篇文章的介绍,基本了解百度地图的基本信息,接下来就让我们一起来实际在项目中操作,显示出地图. 01 引入地图SDK 首先需要新建一个空白的Androi ...
- Android 百度地图开发(一)--- 申请API Key和在项目中显示百度地图
标签: Android百度地图API Key 分类: Android 百度地图开发(2) 最近自己想研究下地图,本来想研究google Map,但是申请API key比较坑爹,于是从百度地 ...
- Android 百度地图开发之一(Hello BaiDu Map)
之前也接触过百度地图的开发,但那是在网上找的案例或代码,而且是比较老的版本.打算重新学习一下百度地图的开发. 本次使用的百度地图的版本是 Android SDK v3.0.0 本篇文章主要讲述百度地图 ...
- C#的百度地图开发(三)依据坐标获取位置、商圈及周边信息
原文:C#的百度地图开发(三)依据坐标获取位置.商圈及周边信息 我们得到了百度坐标,现在依据这一坐标来获取相应的信息.下面是相应的代码 public class BaiduMap { /// < ...
随机推荐
- CSS实现元素居中原理解析
在 CSS 中要设置元素水平垂直居中是一个非常常见的需求了.但就是这样一个从理论上来看似乎实现起来极其简单的,在实践中,它往往难住了很多人. 让元素水平居中相对比较简单:如果它是一个行内元素,就对它的 ...
- Codeforces Round #305 (Div. 2) A. Mike and Fax 暴力回文串
A. Mike and Fax Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/548/pro ...
- android 获取栈顶activty的方法总结(兼容API 5.0)
声明:本文为Dujinyang CSDN原创投稿文章,未经许可,禁止任何形式的转载. 最近5.0\6.0\7.0 安卓系统都陆续上岗了,兼容性和代码更新是个很头疼的问题,这次我们来说下TASK的基础和 ...
- ROS机器人程序设计(原书第2版)补充资料 (柒) 第七章 3D建模与仿真 urdf Gazebo V-Rep Webots Morse
ROS机器人程序设计(原书第2版)补充资料 (柒) 第七章 3D建模与仿真 urdf Gazebo V-Rep Webots Morse 书中,大部分出现hydro的地方,直接替换为indigo或ja ...
- How Do I Declare A Block in Objective-C? [备忘]
How Do I Declare A Block in Objective-C? As a local variable: returnType (^blockName)(parameterTypes ...
- Dynamics CRM2016 Web API之通过实体的primary key查询记录(二)
继续接上篇,还是通过primary key来查询数据,本篇介绍两个我个人比较喜欢的查询方式,一个是查询单个字段,一个是查询lookup关联实体中的属性字段. 先来看如何查询单个字段,只需要在url的最 ...
- Dynamics CRM 通过Odata创建及更新记录各类型字段的赋值方式
CRM中通过Odata方式去创建或者更新记录时,各种类型的字段的赋值方式各不相同,这里转载一篇博文很详细的列出了各类型字段赋值方式,以供后期如有遗忘再次查询使用. http://luoyong0201 ...
- Dynamics CRM 视图显示列的拷贝—view layout replicator
在视图设置的时候很多人会遇到这样的问题,要设置多张视图,而这多张视图可能除了筛选条件不同外其他的均相同,手动去设置是件重复的令人非常头痛的事情,如果能够拷贝那就相当完美了. 本篇即介绍视图显示列的拷贝 ...
- linux的 压缩与解压 命令集
bzip2压缩费时但效果好,而且支持hadoop的hdfs文件切分,gzip不行 bzip2 [-cdz] 文件名 -c :将压缩的过程输出到屏幕 -d :解压缩 -z :压缩 -# :压缩比的参数, ...
- 剑指Offer——迅雷笔试题+知识点总结
剑指Offer--迅雷笔试题+知识点总结 情景回顾 时间:2016.9.19 19:00-21:00 地点:山东省网络环境智能计算技术重点实验室 事件:迅雷笔试 总体来说,迅雷笔试内容体量不算多,主要 ...