- 浏览: 1507719 次
- 性别:
- 来自: 深圳
文章分类
- 全部博客 (63)
- android 地图开发,获取经纬度 (5)
- android基于Gps 定位和基站定位获取经纬度 (0)
- ADB server didn't ACK (1)
- android 开发颜色搭配 (2)
- android 设置wifi静态IP及DNS的方法 (2)
- android自定义滑动启动和关闭按钮 (1)
- android listview滑动删除 (2)
- js显示日历 (1)
- android EditText 设计 (1)
- Oracle执行计划详解 (1)
- android 下拉刷新以及加载更多 (1)
- android 技术 (2)
- android 欢迎界面翻页效果 (1)
- Android Animation 动画 (1)
- js 浮动效果 (1)
- android ListView (1)
- android PopupWindow (1)
- android Activity (1)
- android日期选择 (1)
- XML解析 (1)
- android Activity (1)
- JSON详解 (1)
- android 拍照选图 (2)
- android ActivityDialog (1)
- android Activity自定义Dialog (1)
- Android 感应器 (2)
- android 图片压缩 (1)
- Android 多媒体扫描 (2)
- Android 信息推送 (1)
- xmpp及时通讯 (1)
- Android NDK (1)
- android 图片处理 (1)
- android GridView (1)
- android 录音 (1)
- android 目录 (1)
- android Dialog (1)
- Android 屏幕滑动事件 (1)
- Android 数据库操作 (4)
- android插件开发模式 (1)
- TCP/IP 长连接 (1)
- OS操作 (1)
- android 抓包 (1)
- android 网络数据传输 (1)
最新评论
-
cys一:
google api key v2 新的不能使用
android google地图定位开发,且可以自由移动位置重新获取定位,地址信息 -
lmx612:
下载下来可以直接运行,也是我想要的
android listview 下拉刷新以及加载更多 -
tvvbbb:
辛苦楼主了
android 仿微信聊天界面,以及语音录制功能 -
Mandmg:
等了一天.终于下载到了
android 登陆、提交数据或加载数据时提示页面 -
ya1o1123:
android Activity实现从底部弹出或滑出选择菜单或窗口
android google地图定位开发,且可以自由移动位置重新获取定位,地址信息
- 博客分类:
- android 地图开发,获取经纬度
一:申请key:
1.首先找到debug keystore位置:
打开Eclipse--->Windows--->Preferences--->Android--->Build
一般是这样的路径 C:\Documents and Settings\Administrator\.android\debug.keystore
2.在cmd中执行
keytool -list -alias androiddebugkey -keystore "C:\Documents and Settings\Administrator\.android\debug.keystore" -storepass android -keypass android
得到认证指纹 (MD5)如:6F:C9:41:48:A5:F3:36:A5:D3:DD:B5:D1:CB:AC:47:88
3.打开申请key页面 http://code.google.com/android/maps-api-signup.html
复制 认证指纹 (MD5):到下面的 My certificate's MD5 fingerprint
4.然后点击 Generate Api key
5.等到apikey:0Mg_koWoyZUhlluO4-i6-bq9WYMFbxKodZZMz2Q
二:设计main.xml如下:(将申请到得key设置在com.google.android.maps.MapView 中如下所示)
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <FrameLayout android:id="@+id/map_layout" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <com.google.android.maps.MapView android:id="@+id/map_view" android:layout_width="fill_parent" android:layout_height="fill_parent" android:apiKey="0Mg_koWoyZUhlluO4-i6-bq9WYMFbxKodZZMz2Q" android:clickable="true" android:enabled="true" /> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:orientation="vertical" android:paddingBottom="105dip" > <TextView android:id="@+id/map_bubbleText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/location_tips" android:gravity="left|center" android:maxEms="12" android:paddingLeft="12dip" android:paddingRight="10dip" android:text="@string/load_tips" android:textColor="#cfcfcf" android:textSize="14sp" /> </LinearLayout> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:orientation="vertical" > <ImageView android:id="@+id/point_image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginBottom="30dip" android:src="@drawable/point_start" /> </LinearLayout> </FrameLayout> </LinearLayout>
三:创建MyLocationManager类主要用于管理经纬度获取方法实现
package com.android.map; import android.content.Context; import android.location.Location; import android.location.LocationListener; import android.location.LocationManager; import android.os.Bundle; import android.util.Log; public class MyLocationManager { private final String TAG = "FzLocationManager"; private static Context mContext; private LocationManager gpsLocationManager; private LocationManager networkLocationManager; private static final int MINTIME = 2000; private static final int MININSTANCE = 2; private static MyLocationManager instance; private Location lastLocation = null; private static LocationCallBack mCallback; public static void init(Context c , LocationCallBack callback) { mContext = c; mCallback = callback; } private MyLocationManager() { // Gps 定位 gpsLocationManager = (LocationManager) mContext .getSystemService(Context.LOCATION_SERVICE); Location gpsLocation = gpsLocationManager .getLastKnownLocation(LocationManager.GPS_PROVIDER); gpsLocationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, MINTIME, MININSTANCE, locationListener); // 基站定位 networkLocationManager = (LocationManager) mContext .getSystemService(Context.LOCATION_SERVICE); Location networkLocation = gpsLocationManager .getLastKnownLocation(LocationManager.GPS_PROVIDER); networkLocationManager.requestLocationUpdates( LocationManager.NETWORK_PROVIDER, MINTIME, MININSTANCE, locationListener); } public static MyLocationManager getInstance() { if (null == instance) { instance = new MyLocationManager(); } return instance; } private void updateLocation(Location location) { lastLocation = location; mCallback.onCurrentLocation(location); } private final LocationListener locationListener = new LocationListener() { public void onStatusChanged(String provider, int status, Bundle extras) { } public void onProviderEnabled(String provider) { } public void onProviderDisabled(String provider) { } public void onLocationChanged(Location location) { Log.d(TAG, "onLocationChanged"); updateLocation(location); } }; public Location getMyLocation() { return lastLocation; } private static int ENOUGH_LONG = 1000 * 60; public interface LocationCallBack{ /** * 当前位置 * @param location */ void onCurrentLocation(Location location); } public void destoryLocationManager(){ Log.d(TAG, "destoryLocationManager"); gpsLocationManager.removeUpdates(locationListener); networkLocationManager.removeUpdates(locationListener); } }
四:创建MyMapOverlay抽象类,并继承Overlay,创建抽象方法
changePoint(GeoPoint newPoint,int type)用于回调重新获取到的GeoPoint 重新定位地图,并获取地址信息
import android.view.MotionEvent; import com.google.android.maps.GeoPoint; import com.google.android.maps.MapView; import com.google.android.maps.Overlay; //覆盖整个地图捕捉触控事件的OverLay public abstract class MyMapOverlay extends Overlay{ private int point_X; private int point_Y; private GeoPoint newPoint; public MyMapOverlay(int x,int y){ point_X = x; point_Y = y; } boolean flagMove=false; //触控屏幕移动地图,重新根据屏幕中心点获取该点经纬度 @Override public boolean onTouchEvent(MotionEvent event, MapView mapView) { System.out.println("X->"+event.getX()+":"+point_X); System.out.println("Y->"+event.getY()+":"+point_Y); if(event.getAction() == MotionEvent.ACTION_DOWN){ changePoint(newPoint,1); }else if(event.getAction() == MotionEvent.ACTION_UP){ newPoint = mapView.getProjection().fromPixels(point_X,point_Y); changePoint(newPoint,2); } return false; } public abstract void changePoint(GeoPoint newPoint,int type); }
五:MyMapActivity 继承MapActivity类并实现经纬度获取回调接口LocationCallBack 。项目实现如下:
package com.android.googlemap; import java.io.IOException; import java.util.List; import java.util.Locale; import android.graphics.Rect; import android.location.Address; import android.location.Geocoder; import android.location.Location; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.view.View; import android.view.Window; import android.widget.TextView; import com.android.map.MyLocationManager; import com.android.map.MyLocationManager.LocationCallBack; import com.android.map.MyMapOverlay; import com.google.android.maps.GeoPoint; import com.google.android.maps.MapActivity; import com.google.android.maps.MapController; import com.google.android.maps.MapView; import com.google.android.maps.Overlay; public class MyMapActivity extends MapActivity implements LocationCallBack { private MapView mapView; private MapController mMapCtrl; private MyLocationManager myLocation; private List<Overlay> mapOverlays; public GeoPoint locPoint; private MyMapOverlay mOverlay; private TextView desText; private String lost_tips; private int point_X; private int point_Y; private int statusBarHeight; public final int MSG_VIEW_LONGPRESS = 10001; public final int MSG_VIEW_ADDRESSNAME = 10002; public final int MSG_GONE_ADDRESSNAME = 10003; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.main); mapView = (MapView) findViewById(R.id.map_view); desText = (TextView) this.findViewById(R.id.map_bubbleText); lost_tips = getResources().getString(R.string.load_tips); mapView.setBuiltInZoomControls(true); mapView.setClickable(true); mMapCtrl = mapView.getController(); point_X = this.getWindowManager().getDefaultDisplay().getWidth() / 2; point_Y = this.getWindowManager().getDefaultDisplay().getHeight() / 2; mOverlay = new MyMapOverlay(point_X, point_Y) { @Override public void changePoint(GeoPoint newPoint, int type) { if (type == 1) { mHandler.sendEmptyMessage(MSG_GONE_ADDRESSNAME); } else { locPoint = newPoint; mHandler.sendEmptyMessage(MSG_VIEW_LONGPRESS); } } }; mapOverlays = mapView.getOverlays(); if (mapOverlays.size() > 0) { mapOverlays.clear(); } mapOverlays.add(mOverlay); mMapCtrl.setZoom(12); MyLocationManager.init(MyMapActivity.this.getApplicationContext(), MyMapActivity.this); myLocation = MyLocationManager.getInstance(); } @Override protected void onResume() { super.onResume(); } @Override protected void onPause() { super.onPause(); } @Override protected boolean isRouteDisplayed() { // TODO Auto-generated method stub return false; } public void onCurrentLocation(Location location) { if (locPoint == null) { locPoint = new GeoPoint((int) (location.getLatitude() * 1E6), (int) (location.getLongitude() * 1E6)); mHandler.sendEmptyMessage(MSG_VIEW_LONGPRESS); } } public void changePoint(GeoPoint locPoint) { } /** * 通过经纬度获取地址 * * @param point * @return */ private String getLocationAddress(GeoPoint point) { String add = ""; Geocoder geoCoder = new Geocoder(getBaseContext(), Locale.getDefault()); try { List<Address> addresses = geoCoder.getFromLocation( point.getLatitudeE6() / 1E6, point.getLongitudeE6() / 1E6, 1); Address address = addresses.get(0); int maxLine = address.getMaxAddressLineIndex(); if (maxLine >= 2) { add = address.getAddressLine(1) + address.getAddressLine(2); } else { add = address.getAddressLine(1); } } catch (IOException e) { add = ""; e.printStackTrace(); } return add; } /** * * 用线程异步获取 */ Runnable getAddressName = new Runnable() { public void run() { String addressName = ""; while (true) { addressName = getLocationAddress(locPoint); if (!"".equals(addressName)) { break; } } Message msg = new Message(); msg.what = MSG_VIEW_ADDRESSNAME; msg.obj = addressName; mHandler.sendMessage(msg); } }; private Handler mHandler = new Handler() { @Override public void handleMessage(Message msg) { switch (msg.what) { case MSG_VIEW_LONGPRESS:// 处理长按时间返回位置信息 { if (null == locPoint) return; new Thread(getAddressName).start(); desText.setVisibility(View.VISIBLE); desText.setText(lost_tips); mMapCtrl.animateTo(locPoint); mapView.invalidate(); } break; case MSG_VIEW_ADDRESSNAME: desText.setText((String) msg.obj); desText.setVisibility(View.VISIBLE); if (statusBarHeight == 0) { Rect frame = new Rect(); getWindow().getDecorView().getWindowVisibleDisplayFrame( frame); statusBarHeight = frame.top; point_Y -= statusBarHeight / 2; } break; case MSG_GONE_ADDRESSNAME: desText.setVisibility(View.GONE); break; } } }; // 关闭程序也关闭定位 @Override protected void onDestroy() { // TODO Auto-generated method stub super.onDestroy(); myLocation.destoryLocationManager(); } }
六:在AndroidManifest.xml中不要忘了要添加访问网络和启动定位等的几个权限已经google地图库
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> <!--在application里面添加google地图库如下(一定要记得添加):--> <application android:icon="@drawable/icon" android:label="@string/app_name"> <uses-library android:name="com.google.android.maps" /> <activity android:name="com.android.googlemap.MyMapActivity" android:screenOrientation="portrait" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application>
七:运行效果:
1
提示:如果没有出现地图只出现地址信息背景是网格的,那就是key的问题,根据开始的方法找到自己开发的eclipse中sdk的debug keystore位置重新申请key即可
评论
国内的地图坐标是火星坐标和gps获取的坐标是不一致的.
发表评论
-
android 基于百度地图api开发定位以及获取详细地址
2012-09-19 22:37 158981一:百度地图开发必须要到百度开发平台android开 ... -
android 基于基站,apn,gps,wifi,network 根据不同手机sim卡获取经纬度
2012-09-18 22:12 6137一:新建MyLocation类,本类主要管理使用各种 ... -
android基于Gps 定位和基站定位获取经纬度
2012-09-18 21:26 12290一:新建MyLocationManager.java ... -
android 基于百度地图api获取经纬度
2012-09-18 20:35 65545一:申请百度地图key 申请key网址:http: ...
相关推荐
在Android平台上,地图定位移动应用的设计与开发是一个关键领域,...对于希望深入学习Android地图应用开发的开发者来说,这是一个非常有价值的参考资料,可以从中学到如何构建功能完备且用户体验良好的地图定位应用。
在Android开发中,集成高德地图进行移动定位是一项常见的需求,尤其对于开发地理位置相关的应用来说至关重要。本示例主要讲解如何在Android应用中使用高德地图API实现2D定位功能,适合初学者入门。首先,我们需要...
在Android平台上进行移动地图开发是一项综合性的技术工作,涉及到Android SDK、百度地图API以及地理位置服务等多个方面的知识。本文将深入探讨这一主题,帮助你理解如何在Android 2.3版本上构建一个功能丰富的地图...
这时,Wi-Fi和移动网络基站的信号可以辅助定位,提供室内或城市环境下的粗略位置信息。 Android中的LocationManager类是处理定位的核心组件,它允许开发者注册监听器以接收位置更新。LocationListener接口是用于...
同时,如果你的应用需要定位功能,还需要集成Android的Location API,获取用户的位置信息,并在地图上显示当前位置。 在实际开发中,你可能还需要考虑到性能优化,比如合理地缓存地图数据、避免过度绘制等。此外,...
在地图应用开发方面,Android SDK提供了Google Maps API,这是一个强大的工具,用于在应用中集成地图显示、路线规划、地理编码(地址转换为坐标)和反地理编码(坐标转换为地址)等功能。集成Google Maps API需要在...
在Android中,用户可以在设置中开启或关闭GPS,开发者则可以调用Android的Location API来获取位置信息。 1. **Location API**:这是Android提供的一组接口,用于获取设备的位置信息,如经度、纬度、海拔和速度等。...
在Android开发中,模拟卫星定位并将其在Google地图上显示是一项常见的需求,尤其在测试和调试定位相关的应用程序时。这个话题涉及到多个技术层面,包括Android系统API、模拟器的使用以及地图服务集成。 首先,我们...
在Android应用开发中,集成地图服务是常见的需求之一。本篇将深入探讨如何在Android应用中使用谷歌地图API以及如何利用高德地图的数据资源来加载自定义的瓦片图层。这种技术通常用于显示特定区域的高精度地图、卫星...
Android手机GPS定位开发可以使用Android的Location API来获取当前设备的地理位置,并且可以使用Google Map API来在地图上显示用户当前的地理位置。 Location API 是 Android 中的地理定位服务的 API,提供了访问...
在Android平台上进行基于Google Maps的个人移动地图开发是一项常见的任务,尤其对于想要构建地理位置相关应用的开发者来说。这个主题涉及到Android SDK、Google Maps API以及如何将它们整合到一个功能丰富的移动应用...
Android的Location API是实现定位的核心,它允许应用获取设备的位置信息。这个API提供了多种定位服务,包括GPS(全球定位系统)、Wi-Fi扫描以及移动网络(如蜂窝塔)的数据。这些服务可以单独使用,也可以组合起来,...
开发Android地图应用,首先需要获取Google地图服务的开发密钥(API Key),这通常通过注册证书(certificates)并在Google地图开发者网站完成。获得开发密钥后,必须在AndroidManifest.xml文件中注册相关的权限,包括对...
通过本实验,我们可以掌握 Android 移动平台开发的基本知识,包括使用 GPS 定位和网络定位、获取位置信息、使用百度定位服务等。同时,我们还可以了解 Android 操作系统的架构、组件、UI 设计、存储机制、网络编程、...
1. GPS定位:Android系统提供了GPS(全球定位系统)接口,通过LocationManager服务获取GPS卫星提供的位置信息。你需要在AndroidManifest.xml中添加`<uses-permission android:name="android.permission.ACCESS_FINE_...
Google定位服务是Android系统中集成的一套API,它允许应用程序通过多种途径(如GPS、Wi-Fi、移动网络)获取设备的位置信息。这套服务包括Fused Location Provider(融合位置提供者),它可以智能地结合不同定位源,...
综上所述,这份"Android应用源码之百度地图移动获取位置,自动定位"主要展示了如何在Android应用中集成百度地图API,实现自动定位功能。通过分析源码,开发者可以学习到如何开启定位服务、设置定位监听、在地图上...
在Android平台上,获取设备位置信息是一项关键功能,通常可以通过GPS(全球定位系统)和基站定位两种方式实现。本文将深入探讨这两种方法,并结合提供的源码分析其工作原理和实现细节。 1. GPS定位: GPS定位是...