第8章综合实训二基于Android的手机定位项目剖析
{public void onClick(View v) { if(mEditText01.getText().toString()!=) {/*取得User要前往地址的GeoPoint对象*/ toGeoPoint= getGeoByAddress(mEditText01.getText().toString()); /*线路规划Intent*/ Intent intent=new Intent(); intent.setAction(android.content.Intent.ACTION_VIEW); /*传入路径规划所需要的地标地址*/ intent.setData ( Uri.parse(/maps?f=daaddr=+ GeoPointToString(fromGeoPoint)+ daddr=+GeoPointToString(toGeoPoint)+ h1=cn) ); startActivity(intent); }}}); private final LocationListener mLocationListener01 = new LocationListener() { public void onLocationChanged(Location location) { /*当手机收到位置更改时,将location传入getMyLocation*/ mLocation01=location; fromGeoPoint=getGeoByLocation(location); refreshMapViewByGeoPoint(fromGeoPoint,mMapView01,intZoomLevel); } /*传入Location对象,取回其GeoPoint对象*/ private GeoPoint getGeoByLocation(Location location) { GeoPoint gp=null; try { /*当Location存在*/ if(location!=null) { double geoLatitude=location.getLatitude()*1E6; double geoLongitude=location.getLongitude()*1E6; gp=new GeoPoint((int)geoLatitude,(int)geoLongitude); }} catch(Exception e) {e.printStackTrace();} return gp;} /*输入地址,取得其GeoPoint对象*/ private GeoPoint getGeoByAddress(String strSearchAddress) { GeoPoint gp=null; try { if(strSearchAddress!=) { Geocoder mGeocoder01=new Geocoder (WayActivity.this,Locale.getDefault()); ListAddress lstAddress=mGeocoder01.getFromLocationName (strSearchAddress,1); if(!lstAddress.isEmpty()) { Address adsLocation=lstAddress.get(0); double geoLatitude=adsLocation.getLatitude()*1E6; double geoLongitude=adsLocation.getLongitude()*1E6; gp=new GeoPoint((int)geoLatitude,(int)geoLongitude); }}} catch(Exception e) { e.printStackTrace();} return gp; } /*传入geoPoint更新MapView里的Google Map*/ private void refreshMapViewByGeoPoint(GeoPoint gp, MapView mapview, int zoomLevel) { try {
原创力文档

文档评论(0)