优化线条2
This commit is contained in:
@@ -985,10 +985,10 @@
|
|||||||
let finalCurve = 0;
|
let finalCurve = 0;
|
||||||
if (isSeattleJapan) {
|
if (isSeattleJapan) {
|
||||||
// Special rule: Seattle ↔ Japan route curves upward (North)
|
// Special rule: Seattle ↔ Japan route curves upward (North)
|
||||||
// For Seattle -> Japan (Westbound): Right is North (+).
|
// Based on user feedback that previous signs resulted in a downward curve,
|
||||||
// For Japan -> Seattle (Eastbound): Right is South (+), so North is (-).
|
// we flip them to ensure the intended upward arc.
|
||||||
const isWestbound = (lowS === 'seattle' || lowS === 'us seattle');
|
const isWestbound = (lowS === 'seattle' || lowS === 'us seattle');
|
||||||
finalCurve = isWestbound ? 0.3 : -0.3;
|
finalCurve = isWestbound ? -0.3 : 0.3;
|
||||||
} else if (count === 1) {
|
} else if (count === 1) {
|
||||||
// Subtle consistent curve for single routes to maintain parallelism
|
// Subtle consistent curve for single routes to maintain parallelism
|
||||||
finalCurve = 0.12;
|
finalCurve = 0.12;
|
||||||
|
|||||||
Reference in New Issue
Block a user