我想画两点之间的曲线,有人能帮我吗?我使用折线测地线,但曲线不是很明显,我可以使用测地线增加曲线大小吗?
发布于 2018-05-07 17:14:59
请检查以下内容:
ArrayList<LatLng> poi = new ArrayList<LatLng>();
PolylineOptions polyLineOptions = new PolylineOptions();
poi.add(new LatLng(-33.66855343,151.2958685)); //from
poi.add(new LatLng(-33.66961962,151.3114906)); // to
polyLineOptions.width(7);
polyLineOptions.geodesic(true);
polyLineOptions.color(getResources().getColor(R.color.black));
polyLineOptions.addAll(points);
Polyline polyline = mGoogleMap.addPolyline(polyLineOptions);
polyline.setGeodesic(true);
https://stackoverflow.com/questions/44298998
复制相似问题