我的代码如下所示:
const coords = {//...etc}
<MapView.Polyline
key="LTrainPolyline"
coordinates={coords}
strokeColor="grey"
strokeWidth={1}
/>
有一个 lineJoin 道具,但我不知道如何使用它,而且文档很少。我想像这样转弯:V => U。我有一种感觉,我试图避免进入并手动添加一大堆坐标来模拟曲线。
我的代码如下所示:
const coords = {//...etc}
<MapView.Polyline
key="LTrainPolyline"
coordinates={coords}
strokeColor="grey"
strokeWidth={1}
/>
有一个 lineJoin 道具,但我不知道如何使用它,而且文档很少。我想像这样转弯:V => U。我有一种感觉,我试图避免进入并手动添加一大堆坐标来模拟曲线。