Android下实现GPS定位服务

1.申请Google API Key,参考前面文章

2.实现GPS的功能需要使用模拟器进行经纬度的模拟设置,请参考前一篇文章进行设置

3.创建一个Build Target为Google APIs的项目

4.修改Androidmanifest文件:

 

view plain
  1. <uses-library android:name="com.google.android.maps" />  
  2. <uses-permission android:name="android.permission.INTERNET"/>  
  3.      <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>  
  4.      <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>  

 

5.修改main.xml文件

 

view plain
  1. <com.google.android.maps.MapView  
  2.     android:id="@+id/MapView01"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:apiKey="0f8FBFJliR7j_7aNwDxClBv6VW8O12V2Y21W_CQ"/>  

 

注意:这里的apiKey值请相应修改为自己的key值

6.代码清单:

 

 

view plain
  1. package com.hoo.android.LocationMap;  
  2. import java.io.IOException;  
  3. import java.util.List;  
  4. import java.util.Locale;  
  5. import android.content.Context;  
  6. import android.graphics.Bitmap;  
  7. import android.graphics.BitmapFactory;  
  8. import android.graphics.Canvas;  
  9. import android.graphics.Paint;  
  10. import android.graphics.Point;  
  11. import android.location.Address;  
  12. import android.location.Criteria;  
  13. import android.location.Geocoder;  
  14. import android.location.Location;  
  15. import android.location.LocationListener;  
  16. import android.location.LocationManager;  
  17. import android.os.Bundle;  
  18. import android.widget.TextView;  
  19. import com.google.android.maps.GeoPoint;  
  20. import com.google.android.maps.MapActivity;  
  21. import com.google.android.maps.MapController;  
  22. import com.google.android.maps.MapView;  
  23. import com.google.android.maps.Overlay;  
  24. public class ActivityLocationMap extends MapActivity   
  25. {  
  26.     public MapController mapController;  
  27.     public MyLocationOverlay myPosition;  
  28.     public MapView myMapView;  
  29.       
  30.     public void onCreate(Bundle savedInstanceState) {  
  31.         super.onCreate(savedInstanceState);  
  32.         setContentView(R.layout.main);  
  33.         //取得LocationManager实例  
  34.         LocationManager locationManager;  
  35.         String context=Context.LOCATION_SERVICE;  
  36.         locationManager=(LocationManager)getSystemService(context);  
  37.         myMapView=(MapView)findViewById(R.id.MapView01);  
  38.         //取得MapController实例,控制地图  
  39.         mapController=myMapView.getController();  
  40.         //设置显示模式为街景模式  
  41.         myMapView.setStreetView(true);  
  42.           
  43.         //*************使用系统自带的控件放大缩小视图***************************  
  44.         //取得MapController对象(控制MapView)  
  45.         mapController = myMapView.getController();   
  46.         //设置地图支持设置模式  
  47.         myMapView.setEnabled(true);  
  48.         //设置地图支持点击  
  49.         myMapView.setClickable(true);     
  50.         //设置缩放控制,这里我们自己实现缩放菜单  
  51.         myMapView.displayZoomControls(true);    
  52.         myMapView.setBuiltInZoomControls(true);   
  53.         //*******************************************************************       
  54.         设置设置地图目前缩放大小倍数(从1到21)  
  55.         mapController.setZoom(17);  
  56.         //设置使用MyLocationOverlay来绘图  
  57.         myPosition=new MyLocationOverlay();  
  58.           
  59.         List<Overlay> overlays=myMapView.getOverlays();  
  60.         overlays.add(myPosition);  
  61.         //设置Criteria(标准服务商)的信息  
  62.         Criteria criteria =new Criteria();  
  63.         //*****设置服务商提供的精度要求,以供筛选提供商************************  
  64.         criteria.setAccuracy(Criteria.POWER_HIGH);//表明所要求的经纬度的精度              
  65.         criteria.setAltitudeRequired(false); //高度信息是否需要提供  
  66.         criteria.setBearingRequired(false);  //压力(气压?)信息是否需要提供  
  67.         criteria.setCostAllowed(false);  //是否会产生费用  
  68.         criteria.setPowerRequirement(Criteria.POWER_MEDIUM);//最大需求标准  
  69.         //*****************************************************  
  70.         //取得效果最好的criteria  
  71.         String provider=locationManager.getBestProvider(criteria, true);  
  72.         //得到坐标相关的信息  
  73.         Location location=locationManager.getLastKnownLocation(provider);  
  74.         //更新位置信息  
  75.         updateWithNewLocation(location);  
  76.         //注册一个周期性的更新,3000ms更新一次,0代表最短距离  
  77.         //locationListener用来监听定位信息的改变(OnLocationChanged)  
  78.         locationManager.requestLocationUpdates(provider, 30000,locationListener);  
  79.     }  
  80.       
  81.     //更新位置信息  
  82.     private void updateWithNewLocation(Location location)   
  83.     {  
  84.         String latLongString; //声明经纬度的字符串  
  85.         TextView myLocationText = (TextView)findViewById(R.id.TextView01);  
  86.         //初始化地址为没有找到,便于处理特殊情况  
  87.         String addressString="没有找到地址/n";  
  88.         if(location!=null)  
  89.         {  
  90.             //****************获取当前的经纬度,并定位到目标*************************  
  91.             //为绘制标志的类设置坐标  
  92.             myPosition.setLocation(location);  
  93.             //取得经度和纬度  
  94.             Double geoLat=location.getLatitude()*1E6;  
  95.             Double geoLng=location.getLongitude()*1E6;  
  96.             //将其转换为int型  
  97.             GeoPoint point=new GeoPoint(geoLat.intValue(),geoLng.intValue());  
  98.             //定位到指定坐标  
  99.             mapController.animateTo(point);  
  100.             //*********************************************************************  
  101.             double lat=location.getLatitude();  //获得经纬度  
  102.             double lng=location.getLongitude();  
  103.             latLongString="经度:"+lat+"/n纬度:"+lng;   //设置经纬度字符串  
  104.               
  105.            // double latitude=location.getLatitude();  
  106.             //double longitude=location.getLongitude();  
  107.             //根据地理位置来确定编码  
  108.             Geocoder gc=new Geocoder(this,Locale.getDefault());  
  109.             try  
  110.             {  
  111.                 //取得地址相关的一些信息:经度、纬度  
  112.                 List<Address> addresses=gc.getFromLocation(lat, lng,1);  
  113.                 StringBuilder sb=new StringBuilder();  
  114.                 if(addresses.size()>0)  
  115.                 {  
  116.                     Address address=addresses.get(0);  
  117.                     for(int i=0;i<address.getMaxAddressLineIndex()-1;i++)  
  118.                         sb.append(address.getAddressLine(i)).append(",");                       
  119.                         //获得地址sb.append(address.getLocality()).append("/n");  
  120.                         //获得邮编sb.append(address.getPostalCode()).append("/n");  
  121.                         sb.append(address.getCountryName());  
  122.                         addressString=sb.toString();  
  123.                 }  
  124.             }catch(IOException e){}  
  125.         }  
  126.         else  
  127.         {  
  128.             latLongString="没有找到坐标./n";  
  129.         }  
  130.         //显示  
  131.         myLocationText.setText("您当前的位置如下:/n"+latLongString+"/n"+addressString);  
  132.     }  
  133.     //监听位置信息的改变  
  134.     private final LocationListener locationListener=new LocationListener()  
  135.     {  
  136.         //当坐标改变时触发此函数  
  137.         public void onLocationChanged(Location location)  
  138.         {  
  139.             updateWithNewLocation(location);  
  140.         }  
  141.         //Provider被disable时触发此函数,比如GPS被关闭   
  142.         public void onProviderDisabled(String provider)  
  143.         {  
  144.             updateWithNewLocation(null);  
  145.         }  
  146.         //Provider被enable时触发此函数,比如GPS被打开  
  147.         public void onProviderEnabled(String provider){}  
  148.         //Provider的转态在可用、暂时不可用和无服务三个状态直接切换时触发此函数  
  149.         public void onStatusChanged(String provider,int status,Bundle extras){}  
  150.     };  
  151.     //方法默认是true,服务器所知的状态列信息是否需要显示  
  152.     protected boolean isRouteDisplayed()  
  153.     {  
  154.         return false;  
  155.     }  
  156.       
  157.     class MyLocationOverlay extends Overlay  
  158.     {  
  159.         Location mLocation;  
  160.         //在更新坐标,以便画图  
  161.         public void setLocation(Location location)  
  162.         {  
  163.             mLocation = location;  
  164.         }  
  165.         @Override  
  166.         public boolean draw(Canvas canvas, MapView mapView, boolean shadow, long when)  
  167.         {  
  168.             super.draw(canvas, mapView, shadow);              
  169.             Paint paint = new Paint();  
  170.             Point myScreenCoords = new Point();  
  171.             // 将经纬度转换成实际屏幕坐标  
  172.             GeoPoint tmpGeoPoint = new GeoPoint((int)(mLocation.getLatitude()*1E6),(int)(mLocation.getLongitude()*1E6));      
  173.             mapView.getProjection().toPixels(tmpGeoPoint, myScreenCoords);  
  174.             //*********paint相关属性设置*********  
  175.             paint.setStrokeWidth(0);//文  
  176.             paint.setARGB(25525500);  
  177.             paint.setStyle(Paint.Style.STROKE);  
  178.             //***********************************  
  179.             Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.green_dot);  
  180.             canvas.drawBitmap(bmp, myScreenCoords.x, myScreenCoords.y, paint);  
  181.             canvas.drawText("您目前的位置", myScreenCoords.x, myScreenCoords.y, paint);  
  182.             return true;  
  183.         }  
  184.     }  
  185. }  

 

代码参考网络,加以修改优化,谢谢

7.程序运行截图,前提是在命令行下输入geo fix 121.5 31.24(定位到上海东方明珠),在命令行下可以输入其他坐标,系统会根据坐标显示其他位置,如接着输入geo fix 113.325 23.113(定位到广州海心沙),不知为什么输入坐标的时候经常会不识别,有时能够成功而有时不行,郁闷,求解……

转载于:https://www.cnblogs.com/Free-Thinker/p/3606475.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/273826.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python 链表 【测试题】

文章目录注意&#xff1a;实例讲解1 .链表基本功能2. 根据值删除链表中的节点信息答案&#xff1a;3.反转一个单链表信息答案4.合并两个有序链表信息答案5.删除排序链表中的重复元素信息答案6.移除链表元素信息7.环形链表信息进阶思路答案注意&#xff1a; 这里的head是只存储…

WebService应用一例,带有安全验证

1、创建WEB项目&#xff0c;添加WEB服务WebService1.asmx&#xff0c;代码如下&#xff1a; 1 using System;2 using System.Collections.Generic;3 using System.Linq;4 using System.Web;5 using System.Web.Services;6 7 namespace WebService8 {9 /// <summary> …

linux集成开发环境

Linux操作系统的种种集成开发环境随着Linux的逐渐兴起&#xff0c;已经有为数众多的程序在上面驰骋了&#xff0c;许多开发环境(Development Environment)也应运而生。好的开发环境一定是集成了编辑、编译和调试等多项功能并且易于使用。本文介绍了一些在Linux上流行的开发环境…

mysql技术内幕《读书笔记》

文章目录1. mysql 体系结构和存储引擎1.5 连接mysql1.5.11. mysql 体系结构和存储引擎 1.5 连接mysql 连接mysql操作是一个连接进程和mysql数据库实例进行通信。 本质是进程通信&#xff0c;常用的进程通信方式有管道&#xff0c;命名管道&#xff0c;命名字&#xff0c;TCP/…

DEDECMS全版本gotopage变量XSS ROOTKIT 0DAY

影响版本&#xff1a; DEDECMS全版本 漏洞描叙&#xff1a; DEDECMS后台登陆模板中的gotopage变量未效验传入数据&#xff0c;导致XSS漏洞。 \dede\templets\login.htm 65行左右 <input type"hidden" name"gotopage" value"<?php if(!empty($g…

Android开源库loopj的android-async-http的 JsonHttpResponseHandler 存在死循环GC_CONCURRENT

我现在用的是 AndroidAsyncHttp 1.4.4 版本&#xff0c;之前遇到一个很奇怪的问题&#xff0c; 当使用 JsonHttpResponseHandler 解析请求的页面出现服务器错误或其他情况返回的内容不是 JSON 字符串时不会调用自己复写实现的 onSuccess 或者 onFailure 方法&#xff0c;将会出…

python【进阶】4.文本和字节序列

文章目录1. 字符、码位和字节表述4.1字符问题2. bytes、bytearray 和 memoryview 等二进制序列的独特特性3. 全部 Unicode 和陈旧字符集的编解码器4.避免和处理编码错误5.处理文本文件的最佳实践6.默认编码的陷阱和标准 I/O 的问题7.规范化 Unicode 文本,进行安全的比较8.规范化…

C#序列化和反序列化

序列化和反序列化我们可能经常会听到&#xff0c;其实通俗一点的解释&#xff0c;序列化就是把一个对象保存到一个文件或数据库字段中去&#xff0c;反序列化就是在适当的时候把这个文件再转化成原来的对象使用。我想最主要的作用有&#xff1a; 1、在进程下次启动时读取上次保…

python【进阶】5.一等函数(注销)

在 Python 中,函数是一等对象。编程语言理论家把“一等对象”定义为满足下述条件的程 序实体: 在运行时创建能赋值给变量或数据结构中的元素能作为参数传给函数能作为函数的返回结果 在 Python 中,所有函数都是一等对象。 5.1 把函数视作对象 >>> def d(n): ... …

进程状态转换(了解)

进程三个基本状态&#xff1a;就绪、阻塞、运行 这个比较简单&#xff0c;进程创建后进入就绪状态、然后若CPU空闲或能打断CPU正在执行的进程&#xff08;优先级低的&#xff09;&#xff0c;那么就绪状态转换成运行态&#xff0c;运行时&#xff0c;进程需要用到其他资源&…

rebuild online意外终止导致ora-8104错误的实验

rebuild online意外终止导致ora-8104错误的实验 SQL> !oerr ora 810408104, 00000, "this index object %s is being online built or rebuilt"// *Cause: the index is being created or rebuild or waited for recovering // from the online (re)build // *Act…

关于range方法,如果你觉得python很简单就错了

前言&#xff1a;在系统学习迭代器之前&#xff0c;我一直以为 range() 方法也是用于生成迭代器的&#xff0c;现在却突然发现&#xff0c;它生成的只是可迭代对象&#xff0c;而并不是迭代器&#xff01; 1、range() 是什么&#xff1f; 对于 range() 函数&#xff0c;有几个注…

centos下crontab的使用

1.作用使用crontab命令可以修改crontab配置文件&#xff0c;然后该配置由cron公用程序在适当的时间执行&#xff0c;该命令使用权限是所有用户。2.格式crontab [-u user] {-l | -r | -e}3.crontab命令选项: -u指定一个用户, -l列出某个用户的任务计划, -r删除某个用户的任务, -…

关于python3中的包operator(支持函数式编程的包)

文章目录1.functools2.operator.itemgetter3.operator.attrgetter虽然 Guido 明确表明,Python 的目标不是变成函数式编程语言,但是得益于 operator 和 functools 等包的支持,函数式编程风格也可以信手拈来。接下来的两节分别介绍这两 个包。 1.functools 示例1 使用 reduce 函…

collections 中的namedtuple

文章目录namedtuple 基本用法namedtuple特性_make(iterable)_asdict()_replace(**kwargs)_fields_fields_defaults参考&#xff1a;namedtuple 基本用法 Tuple还有一个兄弟&#xff0c;叫namedtuple。虽然都是tuple&#xff0c;但是功能更为强大。对于namedtuple&#xff0c;你…

abap 中modify 的使用

1、modify table itab from wa Transporting f1 f2 ... 表示表itab中符合工作区wa 中关键字的一条数据的 f1 f2字段会被wa中对应的字段值更新。 modify用于更新和新增数据&#xff0c;当表中没有数据时就新增&#xff0c;有就修改。 2、在使用binary search 时一定要先排序&am…

python[进阶] 6.使用一等函数实现设计模式

文章目录6.1.1 经典的“策略”模式6.1.2 使用函数实现“策略”模式6.1.3 选择最佳策略&#xff1a;简单的6.1.4 找出模块中的全部6.2 “命令”模式6.1.1 经典的“策略”模式 为抽象基类&#xff08;Abstract Base Class&#xff0c;ABC&#xff09;&#xff0c;这么做是为了使…

2014阿里巴巴校园招聘笔试题 - 中南站

转载于:https://www.cnblogs.com/gotodsp/articles/3530329.html

python中一些特殊方法的作用

我们先暂且称呼为特殊方法。 单下划线开头&#xff08;_foo&#xff09;双下划线开头的&#xff08;__foo&#xff09;双下划线开头和结尾的&#xff08; __foo__&#xff09;代表不能直接访问的类属性&#xff0c;需通过类提供的接口进行访问&#xff0c;不能用“from xxx im…

Spring的IOC原理[通俗解释一下]

1. IoC理论的背景 我们都知道&#xff0c;在采用面向对象方法设计的软件系统中&#xff0c;它的底层实现都是由N个对象组成的&#xff0c;所有的对象通过彼此的合作&#xff0c;最终实现系统的业务逻辑。 图1&#xff1a;软件系统中耦合的对象 如果我们打开机械式手表的后盖&am…