代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
高德地图Android版SDK的应用(定位,添加自定义标记点)
作者:
明鑫
/ 发布于
2016/5/3
/
696
需要先下载高德地图的 Android SDK和 Android 定位SDK : http://code.autonavi.com/index
package com.fproject.DXCBuy; import com.amap.api.location.AMapLocation; import com.amap.api.location.AMapLocationListener; import com.amap.api.location.LocationManagerProxy; import com.amap.api.location.LocationProviderProxy; import com.amap.api.maps.AMap; import com.amap.api.maps.AMap.InfoWindowAdapter; import com.amap.api.maps.AMap.OnInfoWindowClickListener; import com.amap.api.maps.AMap.OnMarkerClickListener; import com.amap.api.maps.CameraUpdate; import com.amap.api.maps.CameraUpdateFactory; import com.amap.api.maps.LocationSource; import com.amap.api.maps.MapView; import com.amap.api.maps.model.BitmapDescriptorFactory; import com.amap.api.maps.model.LatLng; import com.amap.api.maps.model.Marker; import com.amap.api.maps.model.MarkerOptions; import com.amap.api.maps.model.MyLocationStyle; import android.location.Location; import android.os.Bundle; import android.text.SpannableString; import android.text.style.ForegroundColorSpan; import android.view.View; import android.widget.ImageView; import android.widget.TextView; import android.app.Activity; import android.graphics.Color; public class ShopMapActivity extends Activity implements LocationSource, AMapLocationListener, OnInfoWindowClickListener, InfoWindowAdapter, OnMarkerClickListener{ private PublicData pd; private MapView mapView; private AMap aMap; private OnLocationChangedListener mListener; private LocationManagerProxy mAMapLocationManager; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_shopmap); mapView = (MapView) findViewById(R.id.map); mapView.onCreate(savedInstanceState); init(); pd = PublicData.getInstance(); } /** * 初始化AMap对象 */ private void init() { if (aMap == null) { aMap = mapView.getMap(); setUpMap(); } } Marker MEIYIDUO; Marker BOLIAN; Marker CUNZHIHUA; private void setUpMap() { // 自定义系统定位小蓝点 MyLocationStyle myLocationStyle = new MyLocationStyle(); myLocationStyle.myLocationIcon(BitmapDescriptorFactory.fromResource(R.drawable.gps)); myLocationStyle.strokeColor(Color.BLACK); myLocationStyle.strokeWidth(5); aMap.setMyLocationStyle(myLocationStyle); // 设置定位资源 aMap.setLocationSource(this); // 设置为true表示系统定位按钮显示并响应点击,false表示隐藏,默认是false aMap.setMyLocationEnabled(true); CameraUpdate update = CameraUpdateFactory.newLatLngZoom(new LatLng(23.041725,113.373472), 17); aMap.moveCamera(update); //添加标记 LatLng ll_meiyijia = new LatLng(23.041425,113.37536); LatLng ll_bolian = new LatLng(23.041725,113.373472); LatLng ll_cunzhihua = new LatLng(23.041337,113.372602); MEIYIDUO = aMap.addMarker(new MarkerOptions() .position(ll_meiyijia) .title("美事多超市") .icon(BitmapDescriptorFactory.fromResource(R.drawable.cart_alt)).perspective(true) .draggable(true));// 设置远小近大效果,2.1.0版本新增 BOLIAN = aMap.addMarker(new MarkerOptions() .position(ll_bolian) .title("博联超市") .icon(BitmapDescriptorFactory.fromResource(R.drawable.cart_alt)).perspective(true) .draggable(true));// 设置远小近大效果,2.1.0版本新增 CUNZHIHUA = aMap.addMarker(new MarkerOptions() .position(ll_cunzhihua) .title("春之花超市") .icon(BitmapDescriptorFactory.fromResource(R.drawable.cart_alt)).perspective(true) .draggable(true));// 设置远小近大效果,2.1.0版本新增 aMap.setOnMarkerClickListener(this); aMap.setOnInfoWindowClickListener(this); aMap.setInfoWindowAdapter(this); BOLIAN.showInfoWindow(); } /** * 此方法需存在 */ @Override protected void onResume() { super.onResume(); mapView.onResume(); } /** * 此方法需存在 */ @Override protected void onPause() { super.onPause(); mapView.onPause(); deactivate(); } /** * 此方法需存在 */ @Override protected void onDestroy() { super.onDestroy(); mapView.onDestroy(); } /** * 此方法已经废弃 */ @Override public void onLocationChanged(Location location) { } /** * 定位成功后回调函数 */ @Override public void onLocationChanged(AMapLocation aLocation) { if (mListener != null) { // 将定位信息显示在地图上 mListener.onLocationChanged(aLocation); } } /** * 激活定位 */ @Override public void activate(OnLocationChangedListener listener) { mListener = listener; if (mAMapLocationManager == null) { mAMapLocationManager = LocationManagerProxy.getInstance(this); /* * mAMapLocManager.setGpsEnable(false);// * 1.0.2版本新增方法,设置true表示混合定位中包含gps定位,false表示纯网络定位,默认是true */ // Location SDK定位采用GPS和网络混合定位方式,时间最短是5000毫秒,否则无效 mAMapLocationManager.requestLocationUpdates( LocationProviderProxy.AMapNetwork, 5000, 10, this); } } /** * 停止定位 */ @Override public void deactivate() { mListener = null; if (mAMapLocationManager != null) { mAMapLocationManager.removeUpdates(this); mAMapLocationManager.destory(); } mAMapLocationManager = null; } @Override public void onProviderDisabled(String provider) { // TODO Auto-generated method stub } @Override public void onProviderEnabled(String provider) { // TODO Auto-generated method stub } @Override public void onStatusChanged(String provider, int status, Bundle extras) { // TODO Auto-generated method stub } @Override public View getInfoContents(Marker marker) { return null; } @Override public View getInfoWindow(Marker marker) { View view = getLayoutInflater().inflate(R.layout.custom_info_window, null); ImageView imageView = (ImageView) view.findViewById(R.id.badge); imageView.setImageResource(R.drawable.cart_alt); String title = marker.getTitle(); TextView titleUi = ((TextView) view.findViewById(R.id.title)); SpannableString titleText = new SpannableString(title); titleText.setSpan(new ForegroundColorSpan(Color.BLACK), 0, titleText.length(), 0); titleUi.setTextSize(15); titleUi.setText(titleText); TextView snippetUi = ((TextView) view.findViewById(R.id.snippet)); SpannableString snippetText = new SpannableString("点击进入商店"); snippetText.setSpan(new ForegroundColorSpan(Color.GRAY), 0, snippetText.length(), 0); snippetUi.setTextSize(12); snippetUi.setText(snippetText); return view; } @Override public void onInfoWindowClick(Marker arg0) { if(arg0.equals(MEIYIDUO)) { pd.getHandlerMain().sendMsg("enter_shop", "myj"); } else if(arg0.equals(BOLIAN)) { pd.getHandlerMain().sendMsg("enter_shop", "bl"); } else if(arg0.equals(CUNZHIHUA)) { pd.getHandlerMain().sendMsg("enter_shop", "czh"); } this.finish(); } @Override public boolean onMarkerClick(Marker arg0) { // TODO Auto-generated method stub return false; } }
试试其它关键字
高德地图
SDK
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
明鑫
贡献的其它代码
(
17
)
.
监测Nginx访问日志502情况,并做相应动作
.
String 去除空格 回车 换行 水平制表符
.
进程相关
.
基于php的加油卡充值接口调用代码实例
.
遍历CookieContainer所有Cookie并保存到文件
.
基于JDBC的数据库DAO封装
.
js设置选中的行样式
.
js设置选中的行样式
.
curl下载文件到本地服务器
.
div上下居中css
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3