在Google地图中显示路线方向

时间:2015-04-14 17:49:40

标签: android maps

           googleMap = ((SupportMapFragment) getSupportFragmentManager()
                    .findFragmentById(R.id.map)).getMap();
            googleMap.addMarker(new MarkerOptions()
            .position(
                    new LatLng(Float.parseFloat(latitude), Float
                            .parseFloat(longitude)))
                            .title("Marker").title(title));
            **googleMap.addPolyline(new PolylineOptions()
            .add(new LatLng( Double.parseDouble(latitude1),  Double.parseDouble(longitude1)),
                    new LatLng( Double.parseDouble(latitude), Double.parseDouble(longitude)))
            .width(5).color(Color.BLUE).geodesic(true));;**
            googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(
                    cameraLatLng, 17));

所以基本上就是我所做的,但是代码的作用是从源到目的地画一​​条线。但是,我不想画一条线,我只想显示路线方向。

喜欢这张图片http://s7.postimg.org/dwdbkq6h7/Screenshot_2015_04_14_20_40_58.png

1 个答案:

答案 0 :(得分:0)

您可以使用Google Direction API查找两点之间的路线。