高德地图集成步骤

一,下载sdk --代开2Dmap_Demo


image.png
image.png

二,获取appkey(先要获取keystore的shaw1值)

image.png

(1),在C:\Users\Administrator.android目录下找到debug.keystore,

(2,接着在该目录下的地址栏输入cmd命令

Keytool -v -list -keystore debug.keystore的绝对路径

(3,回车-->输入密码(密码是android)

(4,复制

image.png

三,导入jar包,并添加到依赖库(将2D地图demo的jar拷贝到项目)

image.png

四,拷贝Demo的清单文件

image.png

五,copy高德sdk的Demo的代码

image.png

六,地图页面的代码:

public class SecondLocationActivity extends AppCompatActivityimplements LocationSource, AMapLocationListener, PoiSearch.OnPoiSearchListener, View.OnClickListener {

private AMap aMap;
private OnLocationChangedListener mListener;
private AMapLocationClient mlocationClient;
private AMapLocationClientOption mLocationOption;
private int currentPage;
private String keyWord = "";
private String city = "深圳市";
private PoiSearch.Query query;
private PoiSearch poiSearch;
private LatLng lp;
private PoiResult poiResult;
private ArrayList<PoiItem> poiItems;
private AroundRvAdapter mAroundRvAdapter;
private ActivitySecondLocationBinding mBinding;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    mBinding = DataBindingUtil.setContentView(this, R.layout.activity_second_location);
    
    mBinding.mapView.onCreate(savedInstanceState);
    mBinding.recycleView.setLayoutManager(new LinearLayoutManager(this));
    mAroundRvAdapter = new AroundRvAdapter(this);
    mBinding.recycleView.setAdapter(mAroundRvAdapter);
    intiUI();
}

private void intiUI() {
    if (aMap == null) {
        aMap = mBinding.mapView.getMap();
        setUpMap();
    }
}

/**
 * 设置一些amap的属性
 */
private void setUpMap() {
    // 自定义系统定位小蓝点
    MyLocationStyle myLocationStyle = new MyLocationStyle();
    myLocationStyle.myLocationIcon(BitmapDescriptorFactory
            .fromResource(R.drawable.location_marker));// 设置小蓝点的图标
    myLocationStyle.strokeColor(Color.BLACK);// 设置圆形的边框颜色
    myLocationStyle.radiusFillColor(Color.argb(100, 0, 0, 180));// 设置圆形的填充颜色
    // myLocationStyle.anchor(int,int)//设置小蓝点的锚点
    myLocationStyle.strokeWidth(1.0f);// 设置圆形的边框粗细
    aMap.setMyLocationStyle(myLocationStyle);
    aMap.setLocationSource(this);// 设置定位监听
    aMap.getUiSettings().setMyLocationButtonEnabled(true);// 设置默认定位按钮是否显示
    aMap.setMyLocationEnabled(true);// 设置为true表示显示定位层并可触发定位,false表        示隐藏定位层并不可触发定位,默认是false
    // aMap.setMyLocationType()
}

/**
 * 方法必须重写,关联生命周期,减少消耗,提高性能
 */
@Override
protected void onResume() {
    super.onResume();
    mBinding.mapView.onResume();
}

/**
 * 方法必须重写,关联生命周期,减少消耗,提高性能
 */
@Override
protected void onPause() {
    super.onPause();
    mBinding.mapView.onPause();
}

/**
 * 方法必须重写,关联生命周期,减少消耗,提高性能
 */
@Override
protected void onSaveInstanceState(Bundle outState) {
    super.onSaveInstanceState(outState);
    mBinding.mapView.onSaveInstanceState(outState);
}

/**
 * 方法必须重写,关联生命周期,减少消耗,提高性能
 */
@Override
protected void onDestroy() {
    super.onDestroy();
    mBinding.mapView.onDestroy();
}

/**
 * 激活定位,激活以后才能够定位
 */
@Override
public void activate(OnLocationChangedListener listener) {
    mListener = listener;
    if (mlocationClient == null) {
        mlocationClient = new AMapLocationClient(this);
        mLocationOption = new AMapLocationClientOption();
        //设置定位监听
        mlocationClient.setLocationListener(this);
        //设置为高精度定位模式
        mLocationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
        //设置定位参数
        mlocationClient.setLocationOption(mLocationOption);
        // 此方法为每隔固定时间会发起一次定位请求,为了减少电量消耗或网络流量消耗,
        // 注意设置合适的定位时间的间隔(最小间隔支持为2000ms),并且在合适时间调用stopLocation()方法来取消定位请求
        // 在定位结束后,在合适的生命周期调用onDestroy()方法
        // 在单次定位情况下,定位无论成功与否,都无需调用stopLocation()方法移除请求,定位sdk内部会移除
        mlocationClient.startLocation();
    }
}

/**
 * 停止定位
 */
@Override
public void deactivate() {
    mListener = null;
    if (mlocationClient != null) {
        mlocationClient.stopLocation();
        mlocationClient.onDestroy();
    }
    mlocationClient = null;
}

/**
 * 定位成功后回调函数
 */
@Override
public void onLocationChanged(AMapLocation amapLocation) {
    if (mListener != null && amapLocation != null) {
        if (amapLocation != null
                && amapLocation.getErrorCode() == 0) {
            // 1,显示系统小蓝点
            mListener.onLocationChanged(amapLocation);
            lp = new LatLng(amapLocation.getLatitude(), amapLocation.getLongitude());
            // aMap.moveCamera(CameraUpdateFactory.changeLatLng(new LatLng(amapLocation.getLatitude(),amapLocation.getLongitude())));
            aMap.moveCamera(CameraUpdateFactory.changeLatLng(lp));
            aMap.moveCamera(CameraUpdateFactory.zoomTo(19)); //范围在3-20之间
            Log.e("date", "搜索结果:" + amapLocation.getAddress());
            //2,只定位一次,就终止(为了提高性能)
            if (mlocationClient != null) {
                mlocationClient.stopLocation();
                mlocationClient.onDestroy();
            }
            //3,尝试搜索周边,搜索所有poi点,500米内
            doSearchQuery();
        } else {
            String errText = "定位失败," + amapLocation.getErrorCode() + ": " + amapLocation.getErrorInfo();
            Log.e("AmapErr", errText);
        }
    }
}

protected void doSearchQuery() {
    currentPage = 0;
    // 第一个参数表示搜索字符串,第二个参数表示poi搜索类型,第三个参数表示poi搜索区域(空字符串代表全国)
    query = new PoiSearch.Query(keyWord, "", city);
    query.setPageSize(50);// 设置每页最多返回多少条poiitem
    query.setPageNum(currentPage);// 设置查第一页

    if (lp != null) {
        poiSearch = new PoiSearch(this, query);
        poiSearch.setOnPoiSearchListener(this);
        poiSearch.setBound(new PoiSearch.SearchBound(new LatLonPoint(lp.latitude, lp.longitude), 5000, true));//200米范围内
        // 设置搜索区域为以lp点为圆心,其周围5000米范围
        poiSearch.searchPOIAsyn();// 异步搜索
    }
}

@Override
public void onPoiSearched(PoiResult result, int rcode) {
    if (rcode == 1000) {
        if (result != null && result.getQuery() != null) {// 搜索poi的结果
            if (result.getQuery().equals(query)) {// 是否是同一条
                poiResult = result;
                poiItems = poiResult.getPois();// 取得第一页的poiitem数据,页数从数字0开始
                Toast.makeText(this, "一共有" + poiItems.size() + "个结果", Toast.LENGTH_SHORT).show();
                mAroundRvAdapter.setPoiItemList(poiItems);

            }
        }
    }
}

@Override
public void onPoiItemSearched(PoiItem poiItem, int i) {
}

@Override
public void onClick(View view) {
    switch (view.getId()) {
        case R.id.rl_exit:
            finish();
            if(Integer.valueOf(android.os.Build.VERSION.SDK)  >= 5) {
                overridePendingTransition(0,0);  //2个0表示activity切换不需要动画效果
            }
            break;
    }
}

}

七,适配器

public class AroundRvAdapter extends RecyclerView.Adapter {

private Context mContext;
public AroundRvAdapter(Context context) {
    mContext = context;
}
private List<PoiItem> mPoiItemList = new ArrayList<>();

public void setPoiItemList(List<PoiItem> poiItemList) {
    mPoiItemList = poiItemList;
    notifyDataSetChanged();
}

@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    View itemView = LayoutInflater.from(mContext).inflate(R.layout.item_around, parent, false);
    ViewHolder viewHolder = new ViewHolder(itemView);
    return viewHolder;
}

@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
    ViewHolder viewHolder = (ViewHolder) holder;
    viewHolder.setData(mPoiItemList.get(position));
}

@Override
public int getItemCount() {
    if(mPoiItemList!=null){
        return mPoiItemList.size();
    }
    return 0;
}

class ViewHolder extends RecyclerView.ViewHolder{
    TextView mTitle;
    TextView mAddress;

    ViewHolder(View view) {
        super(view);
        mTitle = view.findViewById(R.id.title);
        mAddress = view.findViewById(R.id.address);
    }

    public void setData(PoiItem poiItem) {
        mTitle.setText(poiItem.getTitle());
        mAddress.setText(poiItem.getSnippet()); //摘要信息
    }
}

}

八,activity布局

<layout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:orientation="vertical">

    <com.amap.api.maps2d.MapView
        android:id="@+id/map_view"
        android:layout_width="match_parent"
        android:layout_height="200dp">
    </com.amap.api.maps2d.MapView>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycle_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1">
    </android.support.v7.widget.RecyclerView>
</LinearLayout>

</layout>

九,适配器布局

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

<TextView
    android:padding="5dp"
    android:id="@+id/title"
    android:text="松日鼎盛"
    android:textSize="20sp"
    android:textColor="#000000"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

<TextView
    android:padding="5dp"
    android:id="@+id/address"
    android:textSize="16sp"
    android:textColor="#666666"
    android:text="深南大道"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

</LinearLayout>

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342