A n d r o i d地图和定位学习总结-标准化文件发布号:(9556-EUATWK-MWUB-WUNN-INNUL-DDQTY-KIIAndroid地图和定位学习总结首届 Google 暑期大学生博客分享大赛——2010 Android 篇android.location包下有这么一些接口和类:InterfacesGpsStatus.ListenerGpsStatus.NmeaListenerLocationListenerClassesAddressCriteriaGeocoderGpsSatelliteGpsStatusLocationLocationManagerLocationProvidercom.google.android.maps包下有这些类:All ClassesGeoPointItemizedOverlayItemizedOverlay.OnFocusChangeListenerMapActivityMapControllerMapViewyoutParamsMapView.ReticleDrawModeMyLocationOverlayOverlayOverlay.SnappableOverlayItemProjectionTrackballGestureDetector我们边看代码边熟悉这些类。
要获取当前位置坐标,就是从Location对象中获取latitude和longitude属性。
那Location对象是如何创建的?LocationManagerlocMan=(LocationManager)getSystemService(Context.LOCATION_SERVICE);//LocationManager对象只能这么创建,不能用newLocation location=locMan.getLastKnownLocation(LocationManager.GPS_PROVIDER);if(location==null){location=locMan.getLastKnownLocation(WORK_PROVIDER);}//注意要为应用程序添加使用权限<uses-permissionandroid:name="android.permission.ACCESS_FINE_LOCATION"/>所谓getLastKnownLocation自然是获取最新的地理位置信息,那LocationManager.GPS_PROVIDER和WORK_PROVIDER有什么区别呢?俺也不是学通信的,对这个不了解,在网上看到有人想“在室外有GPS定位,在室内想用Wifi或基站定位”。
除了直接使用LocationManager提供的静态Provider(如GPS_PROVIDER和NETWORK_PROVIDER等)外,还可以使用我们自己创建的LocationProvider对象。
创建LocationProvider对象一般要先创建Criteria对象,来设置我们的LocationProvider要满足什么样的标准Criteria myCri=new Criteria();myCri.setAccuracy(Criteria.ACCURACY_FINE);//精确度myCri.setAltitudeRequired(false);//海拔不需要myCri.setBearingRequired(false);//Bearing是“轴承”的意思,此处可理解为地轴线之类的东西,总之Bearing Information是一种地理位置信息的描述myCri.setCostAllowed(true);//允许产生现金消费myCri.setPowerRequirement(Criteria.POWER_LOW);//耗电String myProvider=locMan.getBestProvider(myCri,true);public String getBestProvider (Criteria criteria, boolean enabledOnly)Returns the name of the provider that best meets the given criteria. Only providers that are permitted to be accessed by the calling activity will be returned. If several providers meet the criteria, the one with the best accuracy is returned. If no provider meets the criteria, the criteria are loosened in the following sequence:power requirementaccuracybearingspeedaltitudeNote that the requirement on monetary cost is not removed in this process.Parameterscriteria the criteria that need to be matchedenabledOnly if true then only a provider that is currently enabled is returnedReturnsname of the provider that best matches the requirementsonly翻译为“最适合的"Location location=locMan.getLastKnownLoation(myProvider);double latitude=location.getLatitude();//获取纬度double longitude=location.getLongitude();//获取经度我想知道当前位置描述(比如“武汉华中科技大学”而不是一个经纬值)呢?这就要使用GeoCoder创建一个Address对象了。
Geocoder gc=new Geocoder(context,Locale.CHINA);//Locale是java.util中的一个类List<Address> listAddress=gc.getFromLocation(latitude,longitude,1);List<Address> getFromLocation(double latitude, double longitude, int maxResults)Returns an array of Addresses that are known to describe the area immediately surrounding the given latitude and longitude.(返回给定经纬值附近的一个Address)既然是“附近”那实际编码时我们没必要把经纬值给的那么精确,而取一个近似的整数,像这样:/*自经纬度取得地址,可能有多行地址*/List<Address> listAddress=gc.getFromLocation((int)latitude,(int)longitude,1);StringBuilder sb=new StringBuilder();/*判断是不否为多行*/if(listAddress.size()>0){Address address=listAddress.get(0);for(int i=0;i<address.getMaxAddressLineIndex();i++){sb.append(address.getAddressLine(i)).append("\n");}sb.append(address.getLocality()).append("\n");sb.append(address.getPostalCode()).append("\n");sb.append(address.getCountryName ()).append("\n");}public int getMaxAddressLineIndex ()Since: API Level 1Returns the largest index currently in use to specify an address line. If no address lines are specified, -1 is returned.public String getAddressLine (int index)Since: API Level 1Returns a line of the address numbered by the given index (starting at 0), or null if no such line is present.String getCountryName()Returns the localized country name of the address, for example "Iceland", or null if it is unknown. String getLocality()Returns the locality of the address, for example "Mountain View", or null if it is unknown.反过来我们可以输入地址信息获取经纬值Geocoder mygeoCoder=new Geocoder(myClass.this,Locale.getDefault());List<Address> lstAddress=mygeoCoder.getFromLocationName(strAddress,1);//strAddress是输入的地址信息if(!lstAddress.isEmpty()){Address address=lstAddress.get(0);double latitude=address.getLatitude()*1E6;double longitude=adress.getLongitude()*1E6;GeoPoint geopoint=new GeoPoint((int)latitude,(int)longitude);}A class for handling geocoding and reverse geocoding. Geocoding is the process of transforming a street address or other description of a location into a (latitude, longitude) coordinate.Public ConstructorsGeocoder(Context context, Locale locale)Constructs a Geocoder whose responses will belocalized for the given Locale.Geocoder(Context context)Constructs a Geocoder whose responses will be localized for thedefault system Locale.public List<Address> getFromLocationName (String locationName, int maxResults)Since: API Level 1Returns an array of Addresses that are known to describe the named location, which may be a place namesuch as "Dalvik, Iceland", an address such as "1600 Amphitheatre Parkway, Mountain View, CA", an airportcode such as "SFO", etc.. The returned addresses will be localized for the locale provided to this class'sconstructor.The query will block and returned values will be obtained by means of a network lookup. The results are a bestguess and are not guaranteed to be meaningful or correct. It may be useful to call this method from a threadseparate from your primary UI thread.ParameterslocationNama user-supplied description of a locationemaxResults max number of results to return. Smaller numbers (1 to 5) arerecommendedReturnsa list of Address objects. Returns null or empty list if no matches were found or there is no backendservice available.ThrowsIllegalArgumentException if locationName is nullIOException if the network is unavailable or any other I/O problem occurs说了半天还只是个定位,地图还没出来。