diff --git a/map/domon/GDbFinal.js b/map/domon/GDbFinal.js index 7a00bb2..e2f3843 100644 --- a/map/domon/GDbFinal.js +++ b/map/domon/GDbFinal.js @@ -133,7 +133,7 @@ userMarker = L.marker(latlng).addTo(map); // 複数の危険範囲を生成 - const numDangerAreas = Math.floor(Math.random() * 3) + 1; // 1~3個のランダムな数の危険範囲 + const numDangerAreas = Math.floor(Math.random() * 5) + 1; // 1~3個のランダムな数の危険範囲 for (let i = 0; i < numDangerAreas; i++) { var angle = Math.random() * 2 * Math.PI; var distance = Math.random() * 250 + 250;