百度地图

来源:互联网 发布:图像分类算法 简单 编辑:程序博客网 时间:2024/06/07 20:08

一,集成基础地图

       首先,创建应用获取密匙,导入jar包,导入jniLibs文件

  在manifist中加入权限 在application中添加开发密钥

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/><uses-permission android:name="android.permission.INTERNET"/><uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" /><uses-permission android:name="android.permission.WAKE_LOCK"/><uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /><uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /><uses-permission android:name="android.permission.GET_TASKS" /><uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/><uses-permission android:name="android.permission.WRITE_SETTINGS" />
<meta-data    android:name="com.baidu.lbsapi.API_KEY"    android:value="m9yUPL19nr405dBnLN3UOVtbvAzPtdgF" />

第三步,在布局xml文件中添加地图控件;

<com.baidu.mapapi.map.MapView    android:id="@+id/mapview"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:clickable="true"/>
public class MainActivity extends AppCompatActivity {    private MapView mapView;    private BaiduMap baiduMap;    // 初始化全局 bitmap 信息,不用时及时 recycle    BitmapDescriptor bdA = BitmapDescriptorFactory            .fromResource(R.drawable.icon_marka);    BitmapDescriptor bdB = BitmapDescriptorFactory            .fromResource(R.drawable.icon_markb);    BitmapDescriptor bdC = BitmapDescriptorFactory            .fromResource(R.drawable.icon_markc);    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        //在使用SDK各组件之前初始化context信息,传入ApplicationContext        //注意该方法要再setContentView方法之前实现        //SDKInitializer.initialize(getApplicationContext());        setContentView(R.layout.activity_main);        mapView = (MapView) findViewById(R.id.mapview);        baiduMap = mapView.getMap();        //普通地图        baiduMap.setMapType(BaiduMap.MAP_TYPE_NORMAL);        //卫星地图       // baiduMap.setMapType(BaiduMap.MAP_TYPE_SATELLITE);        //空白地图, 基础地图瓦片将不会被渲染。在地图类型中设置为NONE,将不会使用流量下载基础地图瓦片图层。使用场景:与瓦片图层一起使用,节省流量,提升自定义瓦片图下载速度。       // baiduMap.setMapType(BaiduMap.MAP_TYPE_NONE);        //开启交通图       // baiduMap.setTrafficEnabled(true);        //开启热力图        // baiduMap.setBaiduHeatMapEnabled(true);        //定义Maker坐标点        LatLng point = new LatLng(39.963175, 116.400244);//构建Marker图标        BitmapDescriptor bitmap = BitmapDescriptorFactory                .fromResource(R.drawable.icon_marka);   //第一种方法       //构建MarkerOption,用于在地图上添加Marker        OverlayOptions option = new MarkerOptions()                .position(point)                .icon(bitmap).draggable(true);       //在地图上添加Marker,并显示        baiduMap.addOverlay(option);        //第二种方法        LatLng latLngA = new LatLng(39.963175, 116.300244);        BitmapDescriptor bdAgrop = BitmapDescriptorFactory                .fromResource(R.drawable.icon_gcoding);        //第二种方式添加掉下动画效果        final MarkerOptions ooA = new MarkerOptions().position(latLngA).icon(bdAgrop)                .zIndex(9).draggable(true);        // 掉下动画        // ooA.animateType(MarkerOptions.MarkerAnimateType.drop);        ooA.animateType(MarkerOptions.MarkerAnimateType.grow);        //在地图上添加Marker,并显示        // baiduMap.addOverlay(ooA);        final Marker mMarkerA = (Marker) (baiduMap.addOverlay(ooA));        //第三种        //帖动画效果        // 通过markericons设置一组图片,再通过period设置多少帧刷新一次图片资源        ArrayList<BitmapDescriptor> giflist = new ArrayList<BitmapDescriptor>();        giflist.add(bdA);        giflist.add(bdB);        giflist.add(bdC);        //定义Maker坐标点        LatLng latLngD = new LatLng(39.763175, 116.400244);        final OverlayOptions ooD = new MarkerOptions().position(latLngD).icons(giflist)                .zIndex(0).period(10);        baiduMap.addOverlay(ooD);        // Marker   mMarkerD = (Marker) (mBaiduMap.addOverlay(ooD));        //实现Marker的点击        baiduMap.setOnMarkerClickListener(new BaiduMap.OnMarkerClickListener() {            @Override            public boolean onMarkerClick(Marker marker) {                //判断对应Marker                if (mMarkerA == marker) {                    Intent intent = new Intent(MainActivity.this, OtherActivity.class);                    startActivity(intent);                }                return true;            }        });        //调用BaiduMap对象的setOnMarkerDragListener方法设置marker拖拽的监听        baiduMap.setOnMarkerDragListener(new BaiduMap.OnMarkerDragListener() {            public void onMarkerDrag(Marker marker) {                //拖拽中            }            public void onMarkerDragEnd(Marker marker) {                //拖拽结束                LatLng latLng = marker.getPosition();                double longitude = latLng.longitude;                double latitude = latLng.latitude;                Log.i("xxx", longitude + "," + latitude);            }            public void onMarkerDragStart(Marker marker) {                //开始拖拽            }        });    }    @Override    protected void onDestroy() {        super.onDestroy();        //activity执行onDestroy时执行mMapView.onDestroy(),实现地图生命周期管理        mapView.onDestroy();    }    @Override    protected void onResume() {        super.onResume();        //activity执行onResume时执行mMapView. onResume (),实现地图生命周期管理        mapView.onResume();    }    @Override    protected void onPause() {        super.onPause();        //activity执行onPause时执行mMapView. onPause (),实现地图生命周期管理        mapView.onPause();    }}
二,定位

在Application标签中声明SERVICE组件,每个APP拥有自己单独的定位SERVICE

<service android:name="com.baidu.location.f" android:enabled="true" android:process=":remote"></service>
public class OtherActivity extends Activity {    private MapView mapView;    private TextView tv_location;    public LocationClient mLocationClient = null;    public BDLocationListener myListener = new MyLocationListener();    private BaiduMap baiduMap;    private boolean isFirstLoc = true;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_other); //找控件        mapView = (MapView) findViewById(R.id.map_view);        tv_location = (TextView) findViewById(R.id.tv);        //获取地图        baiduMap = mapView.getMap();        //开启定位图层        baiduMap.setMyLocationEnabled(true);        //初始化定位对象  声明LocationClient        mLocationClient = new LocationClient(getApplicationContext());        //注册监听函数        mLocationClient.registerLocationListener(myListener);        initLocation();        mLocationClient.start();            }    private void initLocation() {        LocationClientOption option = new LocationClientOption();        option.setLocationMode(LocationClientOption.LocationMode.Hight_Accuracy);        //可选,默认高精度,设置定位模式,高精度,低功耗,仅设备        option.setCoorType("bd09ll");        //可选,默认gcj02,设置返回的定位结果坐标系        int span = 1000;        option.setScanSpan(span);        //可选,默认0,即仅定位一次,设置发起定位请求的间隔需要大于等于1000ms才是有效的        option.setIsNeedAddress(true);        //可选,设置是否需要地址信息,默认不需要        option.setOpenGps(true);        //可选,默认false,设置是否使用gps        option.setLocationNotify(true);        //可选,默认false,设置是否当GPS有效时按照1S/1次频率输出GPS结果        option.setIsNeedLocationDescribe(true);        //可选,默认false,设置是否需要位置语义化结果,可以在BDLocation.getLocationDescribe里得到,结果类似于在北京天安门附近        option.setIsNeedLocationPoiList(true);        //可选,默认false,设置是否需要POI结果,可以在BDLocation.getPoiList里得到        option.setIgnoreKillProcess(false);        //可选,默认true,定位SDK内部是一个SERVICE,并放到了独立进程,设置是否在stop的时候杀死这个进程,默认不杀死        option.SetIgnoreCacheException(false);        //可选,默认false,设置是否收集CRASH信息,默认收集        option.setEnableSimulateGps(false);        //可选,默认false,设置是否需要过滤GPS仿真结果,默认需要        mLocationClient.setLocOption(option);    }    public class MyLocationListener implements BDLocationListener {        @Override        public void onReceiveLocation(BDLocation location) {            //获取定位结果            StringBuffer sb = new StringBuffer(256);            sb.append("time : ");            sb.append(location.getTime());    //获取定位时间            sb.append("\nerror code : ");            sb.append(location.getLocType());    //获取类型类型            sb.append("\nlatitude : ");            sb.append(location.getLatitude());    //获取纬度信息            sb.append("\nlontitude : ");            sb.append(location.getLongitude());    //获取经度信息            sb.append("\nradius : ");            sb.append(location.getRadius());    //获取定位精准度//---------------------将地图跟定位关联起来----------------------------------------            MyLocationData locData = new MyLocationData.Builder()                    .accuracy(location.getRadius())                    // 此处设置开发者获取到的方向信息,顺时针0-360                    .direction(100).latitude(location.getLatitude())                    .longitude(location.getLongitude()).build();            // 设置定位数据            baiduMap.setMyLocationData(locData);            if (isFirstLoc) {                isFirstLoc = false;                LatLng ll = new LatLng(location.getLatitude(),                        location.getLongitude());                MapStatus.Builder builder = new MapStatus.Builder();                builder.target(ll).zoom(18.0f);                baiduMap.animateMapStatus(MapStatusUpdateFactory.newMapStatus(builder.build()));            }//---------------------将地图跟定位关联起来----------------------------------------            if (location.getLocType() == BDLocation.TypeGpsLocation) {                // GPS定位结果                sb.append("\nspeed : ");                sb.append(location.getSpeed());    // 单位:公里每小时                sb.append("\nsatellite : ");                sb.append(location.getSatelliteNumber());    //获取卫星数                sb.append("\nheight : ");                sb.append(location.getAltitude());    //获取海拔高度信息,单位米                sb.append("\ndirection : ");                sb.append(location.getDirection());    //获取方向信息,单位度                sb.append("\naddr : ");                sb.append(location.getAddrStr());    //获取地址信息                sb.append("\ndescribe : ");                sb.append("gps定位成功");            }  else if (location.getLocType() == BDLocation.TypeNetWorkLocation) {                // 网络定位结果                sb.append("\naddr : ");                sb.append(location.getAddrStr());    //获取地址信息                sb.append("\noperationers : ");                sb.append(location.getOperators());    //获取运营商信息                sb.append("\ndescribe : ");                sb.append("网络定位成功");            } else if (location.getLocType() == BDLocation.TypeOffLineLocation) {                // 离线定位结果                sb.append("\ndescribe : ");                sb.append("离线定位成功,离线定位结果也是有效的");            } else if (location.getLocType() == BDLocation.TypeServerError) {                sb.append("\ndescribe : ");                sb.append("服务端网络定位失败,可以反馈IMEI号和大体定位时间到loc-bugs@baidu.com,会有人追查原因");            } else if (location.getLocType() == BDLocation.TypeNetWorkException) {                sb.append("\ndescribe : ");                sb.append("网络不同导致定位失败,请检查网络是否通畅");            } else if (location.getLocType() == BDLocation.TypeCriteriaException) {                sb.append("\ndescribe : ");                sb.append("无法获取有效定位依据导致定位失败,一般是由于手机的原因,处于飞行模式下一般会造成这种结果,可以试着重启手机");            }            sb.append("\nlocationdescribe : ");            sb.append(location.getLocationDescribe());    //位置语义化信息            final List<Poi> list = location.getPoiList();    // POI数据            if (list != null) {                sb.append("\npoilist size = : ");                sb.append(list.size());                for (Poi p : list) {                    sb.append("\npoi= : ");                    sb.append(p.getId() + " " + p.getName() + " " + p.getRank());                }            }            //此方法运行在子线程            runOnUiThread(new Runnable() {                @Override                public void run() {                    tv_location.setText(list.get(0).getName());                }            });            Log.i("BaiduLocationApiDem", sb.toString() + ",目前位置:" + list.get(0).getName());        }        @Override        public void onConnectHotSpotMessage(String s, int i) {        }    }}

0 0
原创粉丝点击