转载自:https://blog.csdn.net/it666dhw/article/details/78535067


1、要实现高德地图的定位,首先要下载高德地图的SDK以及高德地图定位的SDK 

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

http://lbs.amap.com/api/android-location-sdk/download/ 

2.  注册账号后到控制台应用管理—–>添加应用—->添加key 获取到自己的key值 
    获取key的具体方法在官网上: http://lbs.amap.com/ 

   具体操作文档:http://lbs.amap.com/api/android-location-sdk/guide/android-location/getlocation

3、通过解压得到.Jar文件并放到libs文件中,手动添加到依赖库中(右键Add As Lirbrary) 
 
4、如果你的地图SDK是3D的需要在main中创建 jniLibs 文件夹并把你解压出来的其他文件放到此处 
 
5、开发环境已经配置好了,接下来就是敲代码了.

在工程的“ AndroidManifest.xml ”文件添加key(自己注册的应用key)和Service

<meta-data android:name="com.amap.api.v2.apikey"android:value="自己注册的应用key" /><service android:name="com.amap.api.location.APSService">service>

添加权限

    <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>        <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION">uses-permission>        <uses-permission android:name="android.permission.CHANGE_WIFI_STATE">uses-permission>        <uses-permission android:name="android.permission.READ_PHONE_STATE">uses-permission>        <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/>        <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />        <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />        <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />        <uses-permission android:name="android.permission.INTERNET" />        <uses-permission android:name="android.permission.READ_PHONE_STATE" />        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

acticity_main.xml布局文件

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:orientation="vertical"    android:layout_width="match_parent"    android:layout_height="match_parent" >    <LinearLayout        android:orientation="horizontal"        android:layout_width="match_parent"        android:layout_height="wrap_content">        <Button            android:text="标准地图"            android:layout_weight="1"            android:id="@+id/biaoZhun"            android:layout_width="0dp"            android:layout_height="wrap_content" />        <Button            android:text="卫星地图"            android:layout_weight="1"            android:id="@+id/weiXing"            android:layout_width="0dp"            android:layout_height="wrap_content" />        <Button            android:text="夜间模式"            android:id="@+id/yeJian"            android:layout_weight="1"            android:layout_width="0dp"            android:layout_height="wrap_content" />    LinearLayout>    <com.amap.api.maps.MapView        android:id="@+id/map"        android:layout_marginTop="18dp"        android:layout_width="match_parent"        android:layout_height="match_parent">com.amap.api.maps.MapView>LinearLayout

MainActivity代码

   
import android.graphics.BitmapFactory;import android.os.Bundle;import android.support.v7.app.AppCompatActivity;import android.util.Log;import android.view.View;import android.widget.Button;import android.widget.Toast;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.LocationSource;import com.amap.api.maps.MapView;import com.amap.api.maps.UiSettings;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 java.text.SimpleDateFormat;import java.util.Date;/*    可参考博客:http://blog.csdn.net/it666dhw/article/details/78535067    key:612cf40c3c135d03df5bab6fcfd6b3bd    地图图层有3种:http://lbs.amap.com/api/android-sdk/guide/create-map/set-maptype/    MAP_TYPE_NAVI   导航地图    MAP_TYPE_NIGHT  夜景地图    MAP_TYPE_NORMAL 白昼地图(即普通地图)    MAP_TYPE_SATELLITE  卫星图 */public class MainActivity extends AppCompatActivity implements LocationSource, AMapLocationListener {    //AMap是地图对象    private AMap aMap;    private MapView mapView;    //声明AMapLocationClient类对象,定位发起端    private AMapLocationClient mLocationClient = null;    //声明mLocationOption对象,定位参数    public AMapLocationClientOption mLocationOption = null;    //声明mListener对象,定位监听器    private OnLocationChangedListener mListener = null;    //标识,用于判断是否只显示一次定位信息和用户重新定位    private boolean isFirstLoc = true;    private Button yeJian;    private Button biaoZhun;    private Button weiXing;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        //获取地图控件引用        mapView = (MapView) findViewById(R.id.map);        yeJian = (Button)findViewById(R.id.yeJian);        weiXing = (Button)findViewById(R.id.weiXing);        biaoZhun = (Button)findViewById(R.id.biaoZhun);        //夜间模式地图        yeJian.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View view) {                aMap.setMapType(AMap.MAP_TYPE_NIGHT);//夜景地图,aMap是地图控制器对象。            }        });        //卫星模式地图        weiXing.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View view) {                aMap.setMapType(AMap.MAP_TYPE_SATELLITE);// 设置卫星地图模式,aMap是地图控制器对象。            }        });        //标准模式地图        biaoZhun.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View view) {                aMap.setMapType(AMap.MAP_TYPE_NORMAL);//设置白昼地图(即普通地图)            }        });        //在activity执行onCreate时执行mMapView.onCreate(savedInstanceState),实现地图生命周期管理        mapView.onCreate(savedInstanceState);        if (aMap == null) {            aMap = mapView.getMap();            //设置显示定位按钮 并且可以点击            UiSettings settings = aMap.getUiSettings();            aMap.setLocationSource(this);//设置了定位的监听            // 是否显示定位按钮            settings.setMyLocationButtonEnabled(true);            aMap.setMyLocationEnabled(true);//显示定位层并且可以触发定位,默认是flase        }        //开始定位        location();    }    private void location() {        //初始化定位        mLocationClient = new AMapLocationClient(getApplicationContext());        //设置定位回调监听        mLocationClient.setLocationListener(this);        //初始化定位参数        mLocationOption = new AMapLocationClientOption();        //设置定位模式为Hight_Accuracy高精度模式,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);        //显示实时路况图层,aMap是地图控制器对象。        aMap.setTrafficEnabled(true);        //启动定位        mLocationClient.startLocation();    }    @Override    protected void onDestroy() {        super.onDestroy();        //在activity执行onDestroy时执行mMapView.onDestroy(),实现地图生命周期管理        mapView.onDestroy();        mLocationClient.stopLocation();//停止定位        mLocationClient.onDestroy();//销毁定位客户端。    }    @Override    protected void onResume() {        super.onResume();        //在activity执行onResume时执行mMapView.onResume (),实现地图生命周期管理        mapView.onResume();    }    @Override    protected void onPause() {        super.onPause();        //在activity执行onPause时执行mMapView.onPause (),实现地图生命周期管理        mapView.onPause();    }    @Override    protected void onSaveInstanceState(Bundle outState) {        super.onSaveInstanceState(outState);        //在activity执行onSaveInstanceState时执行mMapView.onSaveInstanceState (outState),实现地图生命周期管理        mapView.onSaveInstanceState(outState);    }    @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();   //地区编码                //3.实现高德地图定位功能,并在控制台打印坐标信息;                System.out.println("定位信息 1 :"+aMapLocation.getAddress());                System.out.println("定位信息 2 :"+aMapLocation.getCountry()+aMapLocation.getProvince()+aMapLocation.getCity()+aMapLocation.getDistrict()+aMapLocation.getStreet()+aMapLocation.getStreetNum());                System.out.println("经度:"+aMapLocation.getLongitude()+"      纬度:"+aMapLocation.getLatitude());                // 如果不设置标志位,此时再拖动地图时,它会不断将地图移动到当前的位置                if (isFirstLoc) {                    //设置缩放级别                    aMap.moveCamera(CameraUpdateFactory.zoomTo(17));                    //将地图移动到定位点                    aMap.moveCamera(CameraUpdateFactory.changeLatLng(new LatLng(aMapLocation.getLatitude(), aMapLocation.getLongitude())));                    //点击定位按钮 能够将地图的中心移动到定位点                    mListener.onLocationChanged(aMapLocation);                    // 添加图钉 Marker,资源使用应用图标,设置当前地图显示为当前位置                    //aMap.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(aMapLocation.getLatitude(), aMapLocation.getLongitude()), 19));                    MarkerOptions markerOptions = new MarkerOptions();                    markerOptions.position(new LatLng(aMapLocation.getLatitude(), aMapLocation.getLongitude()));                    markerOptions.visible(true);                    BitmapDescriptor bitmapDescriptor = BitmapDescriptorFactory.fromBitmap(BitmapFactory.decodeResource(getResources(), R.mipmap.sina));                    markerOptions.icon(bitmapDescriptor);                    aMap.addMarker(markerOptions);                    //获取定位信息                    StringBuffer buffer = new StringBuffer();                    buffer.append(aMapLocation.getCountry() + ""                            + aMapLocation.getProvince() + ""                            + aMapLocation.getCity() + ""                            + aMapLocation.getProvince() + ""                            + aMapLocation.getDistrict() + ""                            + aMapLocation.getStreet() + ""                            + aMapLocation.getStreetNum());                    Toast.makeText(getApplicationContext(), buffer.toString(), Toast.LENGTH_LONG).show();                    isFirstLoc = false;                }            } else {                //显示错误信息ErrCode是错误码,errInfo是错误信息,详见错误码表。                Log.e("AmapError", "location Error, ErrCode:"                        + aMapLocation.getErrorCode() + ", errInfo:"                        + aMapLocation.getErrorInfo());                Toast.makeText(getApplicationContext(), "定位失败", Toast.LENGTH_LONG).show();            }        }    }    @Override    public void activate(OnLocationChangedListener onLocationChangedListener) {        mListener = onLocationChangedListener;    }    @Override    public void deactivate() {        mListener = null;    }}

到这里就简单实现高德地图定位与显示!

更多相关文章

  1. Android(安卓)P系统设置之默认打开定位开关(默认使用位置服务)
  2. 解决Android(安卓)Logcat不打印信息
  3. android 之popupWindow 在指定位置上的显示
  4. android html5网页定位
  5. Android(安卓)ANR问题定位
  6. Android中电池信息(Battery information)的取得
  7. Android获取手机SIM卡运营商信息的方法
  8. ArcGIS for Android(安卓)临时图层绘制文字 汉字不显示问题
  9. Android引路蜂地图开发示例:本地查询

随机推荐

  1. Android中的SQLiteOpenHelper类
  2. android按钮事件触发拨号器
  3. Android(安卓)ARouter路由中传对象遇到的
  4. Android退出时关闭所有Activity的方法
  5. Android中文API(96)——SoundEffectConstan
  6. Android Virtual Device仿真界面对应快捷
  7. Android动态改变工程依赖
  8. android独有的省内存的轻量级容器类
  9. Android自学笔记:Tasks and Back Stack原
  10. Android 通过AlertDialog创建伪菜单