0
x、y座標の配列を作成してから、値にランダムに配置する方法を知っていますか?React:APIオブジェクトから配列を作成し、値に対してランダムに1つの要素を選択するにはどうすればよいですか?
<g id="lines">
{data.sites.map((item, i) => {
let findX = (180 + item.attributes.address.Longitude) * (1552/360);
let findY = (90 - item.attributes.address.Latitude) * (818/ 180);
let randoXY = findX + ',' findY (and randomly selects one of the X, Y values);
return (
<path key={i + i + '--'} id={'line' + (i + 1)} class="cls-3" d={'M' + findX + ','
+ findY +'L' + randoXY} />
)
})}
</g>