- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第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)