Skip to content

Commit

Permalink
Merge pull request #696 from ZeLonewolf/zlw-ie-routes
Browse files Browse the repository at this point in the history
All routes for the UK and Ireland
  • Loading branch information
ZeLonewolf authored Jan 16, 2023
2 parents c8f3cd8 + d94bd59 commit 6fd5b5b
Showing 1 changed file with 32 additions and 11 deletions.
43 changes: 32 additions & 11 deletions src/js/shield_defs.js
Original file line number Diff line number Diff line change
Expand Up @@ -3753,17 +3753,6 @@ export function loadShields(shieldImages) {
Color.shields.white
);

// Great Britain
shields["omt-gb-motorway"] = roundedRectShield(
Color.shields.blue,
Color.shields.white
);

shields["omt-gb-trunk"] = roundedRectShield(
Color.shields.green,
Color.shields.yellow
);

// Greece
shields["GR:motorway"] = hexagonVerticalShield(
3,
Expand Down Expand Up @@ -3799,6 +3788,22 @@ export function loadShields(shieldImages) {
34
);

// Ireland
shields["omt-ie-motorway"] = roundedRectShield(
Color.shields.blue,
Color.shields.white
);

shields["omt-ie-national"] = roundedRectShield(
Color.shields.green,
Color.shields.yellow
);

shields["omt-ie-regional"] = roundedRectShield(
Color.shields.white,
Color.shields.black
);

// Italy
shields["IT:A-road"] = octagonVerticalShield(
2,
Expand Down Expand Up @@ -4026,6 +4031,22 @@ export function loadShields(shieldImages) {
Color.shields.white
);

// United Kingdom
shields["omt-gb-motorway"] = roundedRectShield(
Color.shields.blue,
Color.shields.white
);

shields["omt-gb-trunk"] = roundedRectShield(
Color.shields.green,
Color.shields.yellow
);

shields["omt-gb-primary"] = roundedRectShield(
Color.shields.white,
Color.shields.black
);

// OCEANIA

// Australia
Expand Down

0 comments on commit 6fd5b5b

Please sign in to comment.