伊予大洲で表示に失敗していた問題を修正

This commit is contained in:
harukin-expo-dev-env
2025-09-25 02:59:59 +00:00
parent 9e831ecd6e
commit 83539d5df3
5 changed files with 68 additions and 44 deletions

View File

@@ -31,10 +31,17 @@ export const findReversalPoints = (array, stopStationIDList) => {
}
}
return false;
} else if (array[0] == "U15" && array[1] == "U14") {
return d[0] == "U13" ? true : false;
} else if (array[0] == "S17" && array[1] == "U14") {
return d[0] == "U14" ? true : false;
}
let returndata = false;
d.forEach((x) => {
console.log(array, x, d);
if (array[0] < x && x < array[1]) {
returndata = true;
} else if (array[0] < x && x == array[1]) {