Android之高德地图定位SDK集成及地图功能实现

一:百度高德官方网站,然后去创建应用

网址:http://lbs.amap.com/

1.找到控制台创建一个应用

2.添加key名称,注意命名规范,还有就是下面的SHA1和包名

3.点击右边的Gradle再选择signingReport下面会有个命令,稍等几分钟得到SHA1

4.添加包名

5.得到key

二:下载定位SDK,下载下来有地图SDK和定位SDK,然后导入项目,导入再Add As Library,so文件按自己需求来

下载地址:http://lbs.amap.com/api/android-location-sdk/download/

三:在AndroidManifest.xml的application下配置key和注册service

<!--高德appkey-->
<meta-data
 android:name="com.amap.api.v2.apikey"
 android:value="你的key" />
<!--高德service-->
<service android:name="com.amap.api.location.APSService" />

四:添加权限

<!--高德权限-->
<!--地图包、搜索包需要的基础权限-->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<!--定位包、导航包需要的额外权限(注:基础权限也需要)-->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />

五:地图xml布局实现

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical">

 <LinearLayout
  android:id="@+id/layout_bottom"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_alignParentBottom="true"
  android:background="@color/textview_qianhui"
  android:orientation="vertical"
  android:padding="5dp"
  android:visibility="gone">

  <TextView
   android:id="@+id/map_shop_name"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:padding="5dp"
   android:text="西贝莜面村(丰台店)"
   android:textSize="16sp" />

  <TextView
   android:id="@+id/map_shop_address"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:padding="5dp"
   android:text="丰葆路,永旺梦乐城四楼" />

  <LinearLayout
   android:id="@+id/map_shop_goto"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:layout_gravity="center"
   android:gravity="center"
   android:orientation="horizontal"
   android:padding="10dp">

   <TextView
    android:id="@+id/map_my_address11"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@color/map_button_color"
    android:gravity="center"
    android:padding="5dp"
    android:text="我的位置"
    android:textSize="16sp" />

   <TextView
    android:id="@+id/map_goto_address11"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="40dp"
    android:background="@color/map_button_color"
    android:gravity="center"
    android:padding="5dp"
    android:text="开启导航"
    android:textSize="16sp" />
  </LinearLayout>
 </LinearLayout>

 <LinearLayout
  android:id="@+id/layout_bottom_new"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_alignParentBottom="true"
  android:background="@color/map_button_color"
  android:orientation="vertical"
  android:padding="5dp"
  android:visibility="gone">

  <TextView
   android:id="@+id/tv_getLat"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:padding="5dp"
   android:text="当前经度:"
   android:textSize="16sp" />

  <View
   android:layout_width="match_parent"
   android:layout_height="1dp"
   android:background="@color/textview_hui" />

  <TextView
   android:id="@+id/tv_getLon"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:padding="5dp"
   android:text="当前纬度:"
   android:textSize="16sp" />
 </LinearLayout>

 <com.amap.api.maps.MapView
  android:id="@+id/map"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:layout_above="@id/layout_bottom_new"
  android:clickable="true"
  android:enabled="true" />

 <ImageView
  android:id="@+id/img_back"
  android:layout_width="30dp"
  android:layout_height="30dp"
  android:layout_marginLeft="10dp"
  android:layout_marginTop="20dp"
  android:background="@mipmap/map_back" />

 <ImageView
  android:id="@+id/img_save"
  android:layout_width="30dp"
  android:layout_height="30dp"
  android:layout_alignParentRight="true"
  android:layout_marginRight="10dp"
  android:layout_marginTop="20dp"
  android:background="@mipmap/save"
  android:visibility="gone" />

 <ImageView
  android:id="@+id/map_my_address"
  android:layout_width="30dp"
  android:layout_height="30dp"
  android:layout_alignBottom="@id/map"
  android:layout_marginBottom="60dp"
  android:layout_marginLeft="10dp"
  android:background="@mipmap/my_address" />

</RelativeLayout>

六:地图activity实现

package com.zjtd.bzcommunity.map;

import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.ImageView;

import com.amap.api.location.AMapLocation;
import com.amap.api.location.AMapLocationClient;
import com.amap.api.location.AMapLocationClientOption;
import com.amap.api.location.AMapLocationListener;
import com.amap.api.maps.AMap;
import com.amap.api.maps.CameraUpdateFactory;
import com.amap.api.maps.MapView;
import com.amap.api.maps.model.BitmapDescriptor;
import com.amap.api.maps.model.BitmapDescriptorFactory;
import com.amap.api.maps.model.LatLng;
import com.amap.api.maps.model.MarkerOptions;
import com.zjtd.bzcommunity.R;

import java.text.SimpleDateFormat;
import java.util.Date;

/**
 * Created by Administrator on 2017/3/23.
 * 高德地图
 */
public class ShowMapActivity extends AppCompatActivity implements View.OnClickListener {

 private MapView mapView;//地图控件
 private ImageView img_back;//返回键
 private ImageView map_my_address;//复位
 private AMap aMap;//地图控制器对象
 //声明AMapLocationClient类对象
 public AMapLocationClient mLocationClient = null;
 //声明mLocationOption对象
 public AMapLocationClientOption mLocationOption = null;
 private double lat;
 private double lon;

 @Override
 protected void onCreate(@Nullable Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.map);
  initlayout();
  //初始化定位
  mLocationClient = new AMapLocationClient(getApplicationContext());
  //设置定位回调监听
  mLocationClient.setLocationListener(mLocationListener);
  //必须要写
  mapView.onCreate(savedInstanceState);
  init();
 }

 /**
  * 实例化
  */
 private void initlayout() {
  mapView = (MapView) findViewById(R.id.map);
  img_back = (ImageView) findViewById(R.id.img_back);
  map_my_address = (ImageView) findViewById(R.id.map_my_address);
  img_back.setOnClickListener(this);
  map_my_address.setOnClickListener(this);
 }

 /**
  * * 初始化AMap对象
  */
 private void init() {
  if (aMap == null) {
   aMap = mapView.getMap();
  }
  setUpMap();
 }
 /**
  * 配置定位参数
  */
 private void setUpMap() {
  //初始化定位参数
  mLocationOption = new AMapLocationClientOption();
  //设置定位模式为高精度模式,Battery_Saving为低功耗模式,Device_Sensors是仅设备模式
  mLocationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
  //设置是否返回地址信息(默认返回地址信息)
  mLocationOption.setNeedAddress(true);
  //设置是否只定位一次,默认为false
  mLocationOption.setOnceLocation(false);
  //设置是否强制刷新WIFI,默认为强制刷新
  mLocationOption.setWifiActiveScan(true);
  //设置是否允许模拟位置,默认为false,不允许模拟位置
  mLocationOption.setMockEnable(false);
  //设置定位间隔,单位毫秒,默认为2000ms
  mLocationOption.setInterval(2000);
  //给定位客户端对象设置定位参数
  mLocationClient.setLocationOption(mLocationOption);
  //启动定位
  mLocationClient.startLocation();
 }
 /**
  * 声明定位回调监听器
  */
 public AMapLocationListener mLocationListener = new AMapLocationListener() {
  @Override
  public void onLocationChanged(AMapLocation amapLocation) {
   if (amapLocation != null) {
    if (amapLocation.getErrorCode() == 0) {
     //定位成功回调信息,设置相关消息
     amapLocation.getLocationType();//获取当前定位结果来源,如网络定位结果,详见定位类型表
     amapLocation.getLatitude();//获取纬度
     amapLocation.getLongitude();//获取经度
     amapLocation.getAccuracy();//获取精度信息
     SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
     Date date = new Date(amapLocation.getTime());
     df.format(date);//定位时间
     amapLocation.getAddress();//地址,如果option中设置isNeedAddress为false,则没有此结果,网络定位结果中会有地址信息,GPS定位不返回地址信息。
     amapLocation.getCountry();//国家信息
     amapLocation.getProvince();//省信息
     amapLocation.getCity();//城市信息
     amapLocation.getDistrict();//城区信息
     amapLocation.getStreet();//街道信息
     amapLocation.getStreetNum();//街道门牌号信息
     amapLocation.getCityCode();//城市编码
     amapLocation.getAdCode();//地区编码
     amapLocation.getAoiName();//获取当前定位点的AOI信息
     lat = amapLocation.getLatitude();
     lon = amapLocation.getLongitude();
     Log.v("pcw", "lat : " + lat + " lon : " + lon);
     Log.v("pcw", "Country : " + amapLocation.getCountry() + " province : " + amapLocation.getProvince() + " City : " + amapLocation.getCity() + " District : " + amapLocation.getDistrict());
     //清空缓存位置
     aMap.clear();
     // 设置当前地图显示为当前位置
     aMap.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(lat, lon), 19));
     MarkerOptions markerOptions = new MarkerOptions();
     markerOptions.position(new LatLng(lat, lon));
     markerOptions.title("当前位置");
     markerOptions.visible(true);
     BitmapDescriptor bitmapDescriptor = BitmapDescriptorFactory.fromBitmap(BitmapFactory.decodeResource(getResources(), R.mipmap.btn_kuaisong_change_icon));
     markerOptions.icon(bitmapDescriptor);
     aMap.addMarker(markerOptions);

    } else {
     //显示错误信息ErrCode是错误码,errInfo是错误信息,详见错误码表。
     Log.e("AmapError", "location Error, ErrCode:"
       + amapLocation.getErrorCode() + ", errInfo:"
       + amapLocation.getErrorInfo());
    }
   }
  }
 };

 /**
  * 重新绘制加载地图
  */
 @Override
 protected void onResume() {
  super.onResume();
  mapView.onResume();
 }

 /**
  * 暂停地图的绘制
  */
 @Override
 protected void onPause() {
  super.onPause();
  mapView.onPause();
 }

 /**
  * 保存地图当前的状态方法必须重写
  */
 @Override
 protected void onSaveInstanceState(Bundle outState) {
  super.onSaveInstanceState(outState);
  mapView.onSaveInstanceState(outState);
 }

 /**
  * 销毁地图
  */
 @Override
 protected void onDestroy() {
  super.onDestroy();
  mapView.onDestroy();
 }

 @Override
 public void onClick(View view) {
  switch (view.getId()) {
   case R.id.img_back:
    finish();
    break;
  }
 }
}

效果图:

七:定位功能实现

1.效果图

2.activity的实现

public class LoginAndRegisterActivity extends Activity implements OnClickListener {
 /**
  * 登录界面
  */
 private EditText et_login_phoneNumber;//手机号
 private EditText et_login_password;//密码
 private RelativeLayout btn_login;//登录
 private TextView tv_forget;//忘记密码
 private TextView textzc;//注册
 private ImageView imagqk;//清空密码
 private String address;//地址
 private LinearLayout lineargg;//随便逛逛
 private ImageView fanhuicc;//返回键Register
 //声明AMapLocationClient类对象
 public AMapLocationClient mLocationClient = null;
 //声明定位回调监听器
 //可以通过类implement方式实现AMapLocationListener接口,也可以通过创造接口类对象的方法实现
 public AMapLocationListener mLocationListener = new AMapLocationListener() {
  @Override
  public void onLocationChanged(AMapLocation amapLocation) {
   if (amapLocation != null) {
    if (amapLocation.getErrorCode() == 0) {
     //可在其中解析amapLocation获取相应内容。
     amapLocation.getLocationType();//获取当前定位结果来源,如网络定位结果,详见定位类型表
     amapLocation.getLatitude();//获取纬度
     amapLocation.getLongitude();//获取经度
     amapLocation.getAccuracy();//获取精度信息
     amapLocation.getAddress();//地址,如果option中设置isNeedAddress为false,则没有此结果,网络定位结果中会有地址信息,GPS定位不返回地址信息。
     amapLocation.getCountry();//国家信息
     amapLocation.getProvince();//省信息
     amapLocation.getCity();//城市信息
     amapLocation.getDistrict();//城区信息
     amapLocation.getStreet();//街道信息
     amapLocation.getStreetNum();//街道门牌号信息
     amapLocation.getCityCode();//城市编码
     amapLocation.getAdCode();//地区编码
     amapLocation.getAoiName();//获取当前定位点的AOI信息
     amapLocation.getBuildingId();//获取当前室内定位的建筑物Id
     amapLocation.getFloor();//获取当前室内定位的楼层
//     amapLocation.getGpsStatus();//获取GPS的当前状态
     //获取定位时间
     SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
     Date date = new Date(amapLocation.getTime());
     df.format(date);
     address = amapLocation.getAddress();
    } else {
     //定位失败时,可通过ErrCode(错误码)信息来确定失败的原因,errInfo是错误信息,详见错误码表。
     Log.e("AmapError", "location Error, ErrCode:"
       + amapLocation.getErrorCode() + ", errInfo:"
       + amapLocation.getErrorInfo());
    }
   }
  }
 };
 //声明AMapLocationClientOption对象
 public AMapLocationClientOption mLocationOption = null;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.fragment_login);
  initViews();
  init();
 }

 /**
  * 实例化
  */
 private void initViews() {
  et_login_phoneNumber = (EditText) findViewById(R.id.et_login_phoneNumber);
  et_login_password = (EditText) findViewById(R.id.et_login_password);
  btn_login = (RelativeLayout) findViewById(R.id.btn_login);
  tv_forget = (TextView) findViewById(R.id.tv_forget);
  textzc = (TextView) findViewById(R.id.textzc);
  imagqk = (ImageView) findViewById(R.id.imagqk);
  lineargg = (LinearLayout) findViewById(R.id.lineargg);
  fanhuicc = (ImageView) findViewById(R.id.fanhuicc);
  btn_login.setOnClickListener(this);
  tv_forget.setOnClickListener(this);
  textzc.setOnClickListener(this);
  imagqk.setOnClickListener(this);
  lineargg.setOnClickListener(this);
  fanhuicc.setOnClickListener(this);
 }
 private void init() {
  //初始化定位
  mLocationClient = new AMapLocationClient(getApplicationContext());
  //设置定位回调监听
  mLocationClient.setLocationListener(mLocationListener);
  //初始化AMapLocationClientOption对象
  mLocationOption = new AMapLocationClientOption();
  //设置定位模式为AMapLocationMode.Hight_Accuracy,高精度模式。
  mLocationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
  //设置是否返回地址信息(默认返回地址信息)
  mLocationOption.setNeedAddress(true);
  //设置是否只定位一次,默认为false
  mLocationOption.setOnceLocation(false);
  //设置是否强制刷新WIFI,默认为强制刷新
  mLocationOption.setWifiActiveScan(true);
  //设置是否允许模拟位置,默认为false,不允许模拟位置
  mLocationOption.setMockEnable(false);
  //设置定位间隔,单位毫秒,默认为2000ms
  mLocationOption.setInterval(2000);
  //给定位客户端对象设置定位参数
  mLocationClient.setLocationOption(mLocationOption);
  //单位是毫秒,默认30000毫秒,建议超时时间不要低于8000毫秒。
  mLocationOption.setHttpTimeOut(20000);
  //关闭缓存机制
  mLocationOption.setLocationCacheEnable(false);
  //启动定位
  mLocationClient.startLocation();
 }
@Override
protected void onStop() {
 super.onStop();
 mLocationClient.stopLocation();//停止定位
}
/**
 * 方法必须重写
 */
@Override
protected void onDestroy() {
 super.onDestroy();
 mLocationClient.onDestroy();//销毁定位客户端。
}

到此定位和地图显示功能已实现,大神勿喷,有用的可以借鉴一下。

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持我们!

(0)

相关推荐

  • Android开发之高德地图实现定位

    在应用开发中,地图开发是经常需要使用的"组件",Google Map虽然有官方教程,无奈用不起来,原因你懂的~~那么国内比较出名的是就是百度地图和高德地图,由于个人喜好,所以选择了高德地图LBS,废话不说,上干货. 1.注册开发者,创建应用 这个几乎是所有开放平台都通用的做法,无外乎注册帐号,成为开发者,然后创建一个Android应用,会为你分配一个key绑定你的服务. 注册key.PNG 2.下载SDK,导入jar包,add to library jar包.PNG 第一个是2D地图的

  • Android之高德地图定位SDK集成及地图功能实现

    一:百度高德官方网站,然后去创建应用 网址:http://lbs.amap.com/ 1.找到控制台创建一个应用 2.添加key名称,注意命名规范,还有就是下面的SHA1和包名 3.点击右边的Gradle再选择signingReport下面会有个命令,稍等几分钟得到SHA1 4.添加包名 5.得到key 二:下载定位SDK,下载下来有地图SDK和定位SDK,然后导入项目,导入再Add As Library,so文件按自己需求来 下载地址:http://lbs.amap.com/api/andro

  • Android调用高德地图定位的方法

    在App中使用地图定位十分常见,购物功能的可以直接定位当前位置,发动态功能可以定位当前位置发出,社交功能可以定位周边用户等等.这里我使用高德地图定位当前位置并显示地址和经纬度. github代码传送门 先上效果图: 实现步骤: 1. 创建应用获取key: 接入第三方无一例外,去高德地图官网注册账号并创建应用.填入包名和keystore的Sha1. 创建应用 获取Sha1,输入命令keytool -v -list -keystore keystore文件路径,我在这里通过控制台获取调试版的: 进入

  • Android封装高德地图定位工具类Util的详细步骤

    目录 前提 第一步.去官网创建高德Key 第二步  通过Gradle集成SDK(方便): 第三步    配置参数 第四步   获取定位数据 总结 前提 每次做的项目中或者维护公司之前旧项目的时候,都会用到通过定位来获取经纬度,我们都知道,Android官方也提供了获取经纬度的方法,但是不太好使,所以就用了高德地图的API,不能每次用的时候都要写一堆代码,效率挺低的,于是就想着,封装成一个工具类,方便调用,为以后的项目,不管是管理方面还是查找方面都简洁了不少. 第一步.去官网创建高德Key 官网地

  • Android基于高德地图poi的仿微信获取位置功能实例代码

    1.打开页面自动定位,同时搜索周边所有poi 2.点击搜索按钮,输入关键子,获取关键字搜索结果 3.选取listview中的一项即可定位到该位置,或者获取任何消息 4.文件类 1.MapActivity public class MapActivity extends Activity implements PoiSearch.OnPoiSearchListener { private MapView mMapView = null; private AMap aMap; private MyL

  • SpringBoot整合Mybatis实现高德地图定位并将数据存入数据库的步骤详解

    第一步配置yml文件 server: port: 8080 spring: datasource: username: root password: 123456 url: jdbc:mysql://localhost:3306/spring?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC driver-class-name: com.mysql.cj.jdbc.Driver thymel

  • 基于Android实现百度地图定位过程详解

    一.问题描述 LBS位置服务是android应用中重要的功能,应用越来越广泛,下面我们逐步学习和实现lbs相关的应用如定位.地图.导航等,首先我们看如何基于百度地图实现定位功能 二.配置环境 1.注册密钥:地址http://developer.baidu.com/map/ 2.下载定位SDK,并导入SDK如图所示: 三.编写MyApplication类 编写MyApplication类,为了使用方便我们可以将实现定位的方法封装的Application组件中 封装下列方法 1.  获取定位信息--

  • Android 仿高德地图可拉伸的BottomSheet的示例代码

    前言 最近项目中需要用到高德地图搜索结果后的结果展示的可拉伸控件. gaode.gif 而我看到这个效果图,觉得这个就是一个slidingpanel,但是翻阅了一些发现用google自带的bottomsheet实现更方便 什么是BottomSheet? Bottom Sheet是Design Support Library23.2 版本引入的一个类似于对话框的控件,可以暂且叫做底部弹出框吧. Bottom Sheet中的内容默认是隐藏起来的,只显示很小一部分,可以通过在代码中设置其状态或者手势操

  • Android基于高德地图完全自定义Marker的实现方法

    前言 相信做地图社交类APP开发的大家都知道,一般情况下,为了整体的美观和用户体验度,我们需要定制化Marker的样式.本文中实现的方式都是基于高德地图的,百度地图也类似,大家可以照葫芦画瓢,废话不多说,先来看看最终效果: 实现思路: 先来看看高德官方提供的设置Marker图标的方法: 我们可以看到setIcon()方法,里面的参数BitmapDescriptor就是我们最终需要的东西.那么到底该如何得到这个BitmapDescriptor对象呢,其实很简单,该对象可以通过BitmapDescr

  • Android实现高德地图显示及定位

    本文实例为大家分享了Android实现高德地图显示及定位的具体代码,供大家参考,具体内容如下 先看看效果 1.要实现高德地图的定位,首先要下载高德地图的SDK 下载地址 然后在高德地图官网上登录你注册的账号并且去控制台-–>应用管理-–>添加新key  获取到自己的key值  获取key的具体方法的官网地址 2.通过解压得到.Jar文件并放到libs文件中,手动添加到依赖库中(右键Add--)  3.如果你的地图SDK是3D的需要在main中创建 jniLibs 文件夹并把你解压出来的其他文件

  • Android使用百度地图出现闪退及定位时显示蓝屏问题的解决方法

    使用百度地图出现闪退 一般情况下出现闪退是在AndroidManifest.xml文件中未在application标签中配置 <meta-data android:name="com.baidu.lbsapi.API_KEY" android:value="D9Lh8MrrLMUuXdWMU8tRLtDsta6PoaYN" /> 但是,有些同学会发现,所有配置都是按照官网或者教程上的步骤来配置依旧会出现闪退问题.此时,不要盲目直接去网上搜索使用百度地图出

随机推荐