本章主要内容
正向和反向地址匹配
用Map Views 和 Map Activities 建立交互地图
向地图添加标记
利用LBS找到位置(LBS就是基于位置的服务)
使用近邻提醒
使用LBS
主要的两个LBS组件包括
Location Manager
Location Providers
使用Location Manager,你可以
得到现在的位置
跟踪移动
接近某个区域时设置提醒
找到可用的Location Providers
LOCATION PROVIDER
能提供位置服务的往往有多家,他们的价格,耗电,准确性等也各有不同。下面的代码是用于选择某个位置服务的。
String providerName = LocationManager.GPS_PROVIDER;
LocationProvider gpsProvider;
gpsProvider = locationManager.getProvider(providerName);
LocationManager的常量包含了最常用的位置服务名
LocationManager.GPS_PROVIDER
LocationManager.NETWORK_PROVIDER
如果想知道所有的位置服务提供者,可以使用以下代码
boolean enabledOnly = true;
List<String> providers = locationManager.getProviders(enabledOnly);
你也可以使用筛选项来找到符合你要求的
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_COARSE);
criteria.setPowerRequirement(Criteria.POWER_LOW);
criteria.setAltitudeRequired(false);
criteria.setBearingRequired(false);
criteria.setSpeedRequired(false);
criteria.setCostAllowed(true);
String bestProvider = locationManager.getBestProvider(criteria, true);
找到你的位置
你可以使用getSystemService()方法,传入Context.LOCATION_SERVICE参数来获得一个LocationManager的实例。
String serviceString = Context.LOCATION_SERVICE;
LocationManager locationManager;
locationManager = (LocationManager)getSystemService(serviceString);
在manifest文件中你需要加入相应的许可
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
下面这段代码可以知道你的上一次的位置,使用了GPS来提供位置服务。
String provider = LocationManager.GPS_PROVIDER;
Location location = locationManager.getLastKnownLocation(provider);
double lat = location.getLatitude();
double lng = location.getLongitude();
下面这段代码把一个位置监听器注册到了位置服务提供者上面,并传入了间隔时间和最小距离。
这个间隔时间只是为了省电,实际中更新的间隔可能比这个值大也可能比这个小。GPS非常耗电,所以这个值一定不能太小。
当最小时间和距离被超出的时候,监听器中的onLocationChanged方法会被调用。
String provider = LocationManager.GPS_PROVIDER;
int t = 5000; // milliseconds
int distance = 5; // meters
LocationListener myLocationListener = new LocationListener() {
public void onLocationChanged(Location location) {
// Update application based on new location.
}
public void onProviderDisabled(String provider){
// Update application if provider disabled.
}
public void onProviderEnabled(String provider){
// Update application if provider enabled.
}
public void onStatusChanged(String provider, int status,
Bundle extras){
// Update application if provider hardware status changed.
}
};
locationManager.requestLocationUpdates(provider, t, distance,
myLocationListener);
使用GEOCODER
Geocoding是用于街道地址和经纬度之间的转换的。下面两个概念的意思:
Forward geocoding 为一个地址找到经纬度
Reverse geocoding 为一个经纬度找到地址
Reverse Geocoding
location =
locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
double latitude = location.getLatitude();
double longitude = location.getLongitude();
List<Address> addresses = null;
Geocoder gc = new Geocoder(this, Locale.getDefault());
try {
addresses = gc.getFromLocation(latitude, longitude, 10);
} catch (IOException e) {}
Forward Geocoding
Geocoder fwdGeocoder = new Geocoder(this, Locale.US);
String streetAddress = "160 Riverside Drive, New York, New York";
List<Address> locations = null;
try {
locations = fwdGeocoder.getFromLocationName(streetAddress, 10);
} catch (IOException e) {}
创建一个基于地图的 ACTIVITIE
需要使用到MapView和MapActivity
MapView 就是显示地图的view
MapActivity MapView只能在MapActivity的子类中显示
要显示地图,需要从以下地址得到一个API key
http://code.google.com/android/maps-api-signup.html
这个地址会要求你输入你的certificate's MD5 fingerprint,怎么得到呢。
如果是用于开发环境,可以使用JAVA_HOME下面的keytool命令。<keystore_location>.keystore
可以在eclipse的Windows ➪ Preferences ➪ Android ➪ build里找到
keytool -list -alias androiddebugkey -keystore <keystore_location>.keystore
-storepass android -keypass android
如果是用于生产环境,可以使用下面的命令
keytool -list -alias my-android-alias -keystore my-android-keystore
其中my-android-keystore可以在你export一个android程序为.apk文件时产生。
另外,在manifest文件中的Application节点下,需要加入
<uses-library android:name="com.google.android.maps"/>
因为这个包是不在android.jar里面的,而是在google api里面。
在layout配置文件里面添加一个MapView,需要指定apiKey。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.android.maps.MapView
android:id="@+id/map_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="mymapapikey"
/>
</LinearLayout>
可以选择设置你的地图是卫星图,街道图还是交通图。
mapView.setSatellite(true);
mapView.setStreetView(true);
mapView.setTraffic(true);
介绍下MapController,这个是控制地图的比例和位置的。
以下例子指定了经纬度,比例为最小(1是比例尺最小,21为比例尺最大)
使用setCenter,会跳到指定的位置,而使用animateTo,则会滑到指定的地点。
MapController mapController = myMapView.getController();
Double lat = 37.422006*1E6;
Double lng = -122.084095*1E6;
GeoPoint point = new GeoPoint(lat.intValue(), lng.intValue());
mapController.setCenter(point);
mapController.setZoom(1);
//mapController.animateTo(point);
分享到:
相关推荐
Install-Package Geocoding.Core 然后选择要安装的提供程序(或安装所有提供程序): Install-Package Geocoding.Google Install-Package Geocoding.MapQuest Install-Package Geocoding.Microsoft Install-...
Google Maps GeoCoding API 单元测试数据库,列表,片段和 要求的要求: Android 4及更高版本 使用Google Maps GeoCoding API 用户界面在搜索过程中响应 结果按收到的顺序列出 如果results.size> 1,则添加“在...
使用Vue.js,Google Maps Geocoding和Dark Sky的天气应用。 入门 # clone repo and API submodule git clone https://github.com/krestaino/weather-vue.git --recursive # to fetch submodule if already cloned ...
Chapter 13: Maps, Geocoding, and Location-Based Services Using Location-Based Services Using the Emulator with Location-Based Services Selecting a Location Provider Finding Your Current Location Best ...
尽管名字很长,但它是一个很小的Ruby库,可以通过Google Geocoding API或MelissaData快速标准化邮政地址。 因此,如果您有在线商店,并且需要验证送货地址,则可以考虑使用此库。 那不是什么 这不是对地址或位置...
Google Maps Geocoding API是获取地理位置信息的主要接口,它可以将人类可读的地址转换为经纬度坐标。要使用这个API,你需要一个有效的API密钥,这是从Google Cloud Console中生成的。 下面是一个基本的Python代码...
在移动应用开发领域,尤其是基于地理位置的服务(LBS)应用中,Android Map API 的使用变得日益重要。通过 Android Map API,开发者可以轻松地将地图集成到自己的应用程序中,并实现诸如定位用户当前位置、在地图上...
AIR and Android Reverse Geocoding Maps EXIF Data and the Map Object The speed Property Conclusion Chapter 11 : Microphone and Audio The Microphone Audio Assets Working with Sounds ID3 Tags Modifying ...
AIR and Android Reverse Geocoding Maps EXIF Data and the Map Object The speed Property Conclusion Chapter 11 : Microphone and Audio The Microphone Audio Assets Working with Sounds ID3 Tags Modifying ...
2. Reverse Geocoding:与Geocoding相反,它将地理坐标转换为可读的地址描述。 三、ArcGIS for iOS中的Geocoding 在ArcGIS for iOS中,Geocoding主要通过`AGSGeocoder`类来实现。以下是一般流程: 1. 初始化...
AIR and Android Reverse Geocoding Maps EXIF Data and the Map Object The speed Property Conclusion Chapter 11 : Microphone and Audio The Microphone Audio Assets Working with Sounds ID3 Tags Modifying ...
AIR and Android Reverse Geocoding Maps EXIF Data and the Map Object The speed Property Conclusion Chapter 11 : Microphone and Audio The Microphone Audio Assets Working with Sounds ID3 Tags Modifying ...
Other web services: AMap Search, Bing Maps Elevation API, Bing Maps Location API, HERE Routing API, Open Route Service Directions, Open Route Service Geocoding, Open Street Map Nominatim, Open Street...
Other web services: AMap Search, Bing Maps Elevation API, Bing Maps Location API, HERE Routing API, Open Route Service Directions, Open Route Service Geocoding, Open Street Map Nominatim, Open Street...
总的来说,通过`Geocoder`和Google Maps Geocoding API,Android开发者可以轻松地将地址与经纬度坐标相互转换,为用户提供丰富的地理位置服务。在实现这个功能时,理解网络请求、XML解析以及API的使用限制是至关重要...
Google Maps API提供了多种方式获取JSON数据,比如通过Geocoding API获取地理位置信息,通过Directions API获取路线信息等。通常,这些API需要通过HTTP请求来调用,可以使用Android的HttpURLConnection或者第三方库...
在Android平台上实现Google Map导航功能,需要利用Google Maps Android API v2。自2013年起,API进行了重大更新,导致旧版本的一些类不再适用。本文将详细介绍如何使用最新的API来实现位置获取、通过地名获取经纬度...
CHAPTER 8 Maps, Geocoding, and Location-Based Services 245 CHAPTER 9 Working in the Background 285 CHAPTER 10 Invading the Phone-Top 327 CHAPTER 11 Audio, Video, and Using the Camera 363 ...
《Google API开发详解:Google Maps与Google Earth双剑合璧(第2版)》是一部深入探讨Google地图和地球API开发的指南,旨在帮助开发者充分利用这两个强大的工具进行地理信息系统(GIS)应用的构建。本书详细介绍了如何...