对"Where Am I"示例使用地图
在下面的例子中,"Where Am I"项目将再次被扩展。这次,通过把它转换为一个Map Activity,将可以对它添加地图功能。随着设备位置的改变,地图将会自动地把它的中心定位到新的位置。
(1) 首先,向应用程序的清单中加入访问Internet的uses-permission标签。同时还要在application标签中引入Android地图库。
<application
android:icon&#61;"&#64;drawable/icon">
<activity
android:name&#61;".WhereAmI"
android:label&#61;"&#64;string/app_name">
<action
android:name&#61;"android.intent.action.MAIN" />
<category
android:name&#61;"android.intent.category.LAUNCHER" />
android:name&#61;"com.google.android.maps"/>
android:name&#61;"android.permission.INTERNET"/>
android:name&#61;"android.permission.ACCESS_FINE_LOCATION"/>
(2) 改变WhereAmI的继承性&#xff0c;让它继承MapActivity&#xff0c;而不是Activity。还需要包含对isRouteDisplayed方法的重写。因为这个活动不会显示路径的方向&#xff0c;所以你可以返回false。
public class WhereAmI extends MapActivity {
&#64;Override
protected boolean isRouteDisplayed() {
return false;
}
[ ... existing Activity code ... ]
}
(3) 通过修改main.xml布局资源来包含一个使用完全限定的类名的MapView。一定要保证在com.android.MapView节点中包含一个android:apikey属性。如果有一个Android 地图API key&#xff0c;那么在这里使用它。
android:layout_width&#61;"? ll_parent"
android:layout_height&#61;"? ll_parent">
<TextView
android:id&#61;"&#64;&#43;id/myLocationText"
android:layout_width&#61;"? ll_parent"
android:layout_height&#61;"wrap_content"
android:text&#61;"&#64;string/hello" />
<com.google.android.maps.MapView
android:id&#61;"&#64;&#43;id/myMapView"
android:layout_width&#61;"fill_parent"
android:layout_height&#61;"fill_parent"
android:enabled&#61;"true"
android:clickable&#61;"true"
android:apiKey&#61;"myMapKey" />
(4) 现在运行这个应用程序应该显示原始的地理位置文本&#xff0c;它的下面会有一个MapView&#xff0c;如图
(5) 配置Map View&#xff0c;并把对它的MapController的一个引用作为实例变量进行存储。然后设置Map View的显示选项来显示卫星和StreetView&#xff0c;并缩进到比较进的视角。
MapController mapController; &#64;Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
// 获得对MapView的引用
MapView myMapView &#61; (MapView)findViewById(R.id.myMapView);
// 获得MapView的控制器
mapController &#61; myMapView.getController();
// 配置地图显示选项
myMapView.setSatellite(true);
myMapView.setStreetView(true);
myMapView.displayZoomControls(false);// 放大
mapController.setZoom(17);
LocationManager locationManager;
String context &#61; Context.LOCATION_SERVICE;
locationManager &#61; (LocationManager)getSystemService(context);
Criteria criteria &#61; new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE);
criteria.setAltitudeRequired(false);
criteria.setBearingRequired(false);
criteria.setCostAllowed(true);
criteria.setPowerRequirement(Criteria.POWER_LOW);
String provider &#61; locationManager.getBestProvider(criteria, true);
Location location &#61; locationManager.getLastKnownLocation(provider);
updateWithNewLocation(location);
locationManager.requestLocationUpdates(provider, 2000, 10, locationListener); }
(6) 最后一步是修改updateWithNewLocation方法从而使用Map Controller把地图的中心定位到当前的位置。
private void updateWithNewLocation(Location location) {
String latLongString;
TextView myLocationText;
myLocationText &#61; (TextView)? ndViewById(R.id.myLocationText);
String addressString &#61; "No address found";
if (location !&#61; null) {
// 更新地图位置
Double geoLat &#61; location.getLatitude()*1E6;
Double geoLng &#61; location.getLongitude()*1E6;
GeoPoint point &#61; new GeoPoint(geoLat.intValue(), geoLng.intValue());
mapController.animateTo(point);
double lat &#61; location.getLatitude();
double lng &#61; location.getLongitude();
latLongString &#61; "Lat:" &#43; lat &#43; "\nLong:" &#43; lng;
double latitude &#61; location.getLatitude();
double longitude &#61; location.getLongitude();
Geocoder gc &#61; new Geocoder(this, Locale.getDefault());
try {
List
StringBuilder sb &#61; new StringBuilder();
if (addresses.size() > 0) {
Address address &#61; addresses.get(0);
for (int i &#61; 0; i
sb.append(address.getLocality()).append("\n");
sb.append(address.getPostalCode()).append("\n");
sb.append(address.getCountryName());
}
addressString &#61; sb.toString();
} catch (IOException e) {}
} else {
latLongString &#61; "No location found";
}
myLocationText.setText("Your Current Position is:\n" &#43; latLongString &#43; "\n" &#43; addressString); }