如何在谷歌地图片段上获取这些标记之间的路径?
double latitude1=2.7;
double longitude1=107.6;
LatLng l1=new LatLng(latitude1, longitude1);
double latitude2=2.7;
double longitude2=106.6;
LatLng l2=new LatLng(latitude2, longitude2);
MarkerOptions marker1 =new MarkerOptions().position(l1);
MarkerOptions marker2 =new MarkerOptions().position(l2);
map.addMarker(marker1);
map.addMarker(marker2);