当前位置: 代码迷 >> Android >> Androidmap开发
  详细解决方案

Androidmap开发

热度:47   发布时间:2016-05-01 14:04:02.0
Android地图开发。

使用MapView

http://mobiforge.com/developing/story/using-google-maps-android

?

利用GoogleApi根据经纬度查询地名,和根据地名查询经纬度

http://407827531.iteye.com/blog/1129128

?

地图中文申请

?http://code.google.com/intl/zh-CN/apis/maps/signup.html

?

申请Android Maps API Key

http://blog.csdn.net/liubingzhao/article/details/5599592

?

生成地图API的方法(图解)

http://www.360doc.com/content/11/0326/11/4873696_104704985.shtml

?

离线地图

http://www.cnblogs.com/liongis/archive/2011/01/13/1934990.html

?

如何编程实现开启或关闭GPS?
http://www.learningandroid.net/blog/advance/programmable-toggle-gps/

?

教程:实现Android的不同精度的定位(基于网络和GPS)
http://www.learningandroid.net/blog/foundation/tutorial-location-service/

?

android之GPS
http://jlins.iteye.com/blog/550163

?

android GPS定位,定位城市称,经纬度
http://y150988451.iteye.com/blog/1073965


android使用GPS定位及在googlemap添加标记
http://www.cnblogs.com/yyyyy5101/archive/2011/05/27/2060172.html


Android GPS基础
http://justsee.iteye.com/blog/1010571

?

Android GPS定位
http://miyulano.iteye.com/blog/974757

?

Android GPS获取地理位置
http://bigfirebird.iteye.com/blog/766785

?

Android GPS 定位的实现(2-1) 使用Google地图
http://hi.baidu.com/bin545/blog/item/0f43d607618b18d97b89478a.html

?

android 如何判断GPS,NETWORK开启状态
http://crazier9527.iteye.com/blog/1037673

?

?

Android 根据城市名称获取经纬度?
http://randywei.iteye.com/blog/1068320

?

地图实例源码:

http://code.google.com/p/foursquared/


利用google地图服务反向解析经纬度(复习下json)
http://www.iteye.com/topic/531317

http://sunwenran.iteye.com/blog/531317


android根据地址获取经纬度

http://bbs.theithome.com/simple/?t802.html

?

android GPS定位,定位城市称,经纬度

http://y150988451.iteye.com/blog/1073965

?

android使用GPS定位及在googlemap添加标记

http://www.cnblogs.com/yyyyy5101/archive/2011/05/27/2060172.html

?

?

常见问题

?

如果出现这样的出错提示。

“Debug certificate expired” error in eclipse android plugins

?

?


处理办法。

Delete your debug certificate under ~/.android/debug.keystore (on Linux and Mac OS X); the directory is something like %USERHOME%/.androidon Windows.

The Eclipse plugin should then generate a new certificate when you next try to build a debug package. You may need to clean and then build to generate the certificate.

?

或者:

you can find it in Preferences - Android - Build - Default debug keystore.

?

在模拟器上获取GPS信息时,使用Location?loc?=?LocationManager.getLastKnownLocation("gps");来获取location信息,但是往往在调试中locnull的,因为首先需要在模拟器中手动添加GPS信息,有两种手动添加方法
1、在eclipse下,windows-->open?perspective-->DDMS-->Emulator?control-->Manual下手动设置经纬度,并按send按钮。
2、在cmd下手动添加信息。
(1)首先打开模拟器,然后运行cmd,输入telnet?localhost?5554(注:5554是模拟器在本机的端口,有可能不一样哈,具体端口号,模拟器左上方有显示的),这样会出现
Android?Console:?type?'help'?for?a?list?of?commands
OK的字样。
如果是使用WIN7的朋友,控制台可能会提示telnet无效什么的,那是因为WIN7下默认是不出现telnet的,需要手动打开。具体为:[1]控制面板-->程序-->打开或关闭Windows功能,然后将Telnet服务器和Telnet客户端勾选上。[2]然后在管理工具-->服务中手动启动Telnet
(2)使用geo命令模拟发送GPS信号:
geo?fix?经度?纬度
(3)这时就会发现在模拟器的状态栏上多了一个GPS的标志~再使用Location?loc?=?LocationManager.getLastKnownLocation("gps");就能获取到该坐标的位置了~~?

?

getLastKnownLocation()返回null的解决

http://blog.sina.com.cn/s/blog_74c22b210100s8hg.html

?

Android?成功?使用GPS获取当前地理位置(解决getLastKnownLocation?返回?null)

http://blog.sina.com.cn/s/blog_74c22b210100sfix.html

?

?

几个基本的概念

?

Mobile Network Code (MNC)

移动网号码,中国联通CDMA系统的MNC为03,中国移动的应该为00。

?

Mobile Country Code (MCC)

移动用户所属国家代号,中国是:460。

?

Location Area Code (LAC)

地区区域码,用来划分区域,一般小地方就一个LAC,大地方就有多几个。

?

Cell Tower ID (Cell ID)

?CellID代表一个移动基站,如果你有基站数据,查CellID你就可以知道这个基站在哪里,

移动公司或者警察通过这个知道你是在哪个基站范围打的移动电话。

?

手机应用来定位,只要调用Google现成的API(Secret API)"http://www.google.com/glm/mmap“.

格式:

http://code.google.com/intl/zh-TW/apis/gears/api_geolocation.html

?

?

http://shung007.blogspot.com/search/label/Android

?

测试

CID = 20465

LAC = 495

MNC = 3

MCC = 262

?

http://www.google.com/glm/mmap?mcc=262&mnc=3&cid=20465&lac=495

?

Google Mobile Maps原理之探讨

http://blog.csdn.net/phiger/article/details/4371922

?

谷歌 基站定位

http://wayjava.iteye.com/blog/856735

?

基站定位代码封装

http://z466459262.iteye.com/blog/662241

?

基于基站的移动台定位

http://jackle-liu.iteye.com/blog/786831

?

?摘自互联网,确认可行

http://seven2.blog.163.com/blog/static/1932992200942544319996/

?

CellID得到经纬度

http://www.yuqicook.com/post/2011020701.aspx

?

http://www.anddev.org/poor_mans_gps_-_celltowerid_-_location_area_code_-lookup-t257.html

?

索爱的基于j2ee进行google的基站定位

http://www.congci.com/item/218

?

基于windows mobile的基站定位。

http://www.codeproject.com/script/common/404.aspx?aspxerrorpath=/kb/mobile/deepcast.aspx

?

windows mobile获得cellID lac

http://dev.10086.cn/cmdn/wiki/index.php?doc-view-2547.html