diff --git a/WebContent/images/markers.pdf b/WebContent/images/markers.pdf index 4adbee94c..9fdaea66b 100644 Binary files a/WebContent/images/markers.pdf and b/WebContent/images/markers.pdf differ diff --git a/WebContent/images/round-about-9.png b/WebContent/images/round-about-9.png new file mode 100644 index 000000000..ae5ee6fcb Binary files /dev/null and b/WebContent/images/round-about-9.png differ diff --git a/WebContent/images/sharp-left.png b/WebContent/images/sharp-left.png new file mode 100644 index 000000000..7abc9e980 Binary files /dev/null and b/WebContent/images/sharp-left.png differ diff --git a/WebContent/images/sharp-right.png b/WebContent/images/sharp-right.png new file mode 100644 index 000000000..11cffa6f0 Binary files /dev/null and b/WebContent/images/sharp-right.png differ diff --git a/WebContent/images/slight-left.png b/WebContent/images/slight-left.png index de1cb3357..2a3b41c29 100644 Binary files a/WebContent/images/slight-left.png and b/WebContent/images/slight-left.png differ diff --git a/WebContent/images/slight-right.png b/WebContent/images/slight-right.png index 31f996e62..dba4064b1 100644 Binary files a/WebContent/images/slight-right.png and b/WebContent/images/slight-right.png differ diff --git a/WebContent/main.css b/WebContent/main.css index c3a28f280..0618d9b4a 100644 --- a/WebContent/main.css +++ b/WebContent/main.css @@ -159,7 +159,7 @@ html, body, #map { { position:absolute; bottom:15px; - top:50px; + top:60px; width:380px; font-size:12px; overflow:auto; @@ -238,3 +238,37 @@ html, body, #map { padding:5px; font-size:10px; } + +/* buttons */ +.button +{ + cursor:pointer; + padding:2px 10px 2px 10px; + border-radius:5px; + -moz-border-radius:5px; + background-color:#EEEEEE; + border:1px solid #999999; + color:#333333; + text-decoration:none; + font-size:11px; + outline-style:none; +} +.button:hover +{ + background-color:#F9F9F9; + color:#000000; +} +.button:active +{ + background-color:#F4F4F4; + color:#FF0000; +} + +/* generally useful styles */ +.not-selectable +{ + cursor:default; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; +} \ No newline at end of file diff --git a/WebContent/main.html b/WebContent/main.html index 53a02a223..f16194161 100644 --- a/WebContent/main.html +++ b/WebContent/main.html @@ -11,6 +11,10 @@ + + + + @@ -35,10 +39,6 @@ - - - - @@ -59,7 +59,7 @@
-
+
@@ -68,15 +68,15 @@ Start: - - + + Suchen Ende: - - + + Suchen @@ -84,22 +84,22 @@
- - - + + +
Reset Reverse Route
- +
-
Options
-
+
Options
+
Unbenannte Straßen hervorheben
-
+
diff --git a/WebContent/routing.js b/WebContent/routing.js index 1eab67578..d4da9be89 100644 --- a/WebContent/routing.js +++ b/WebContent/routing.js @@ -378,6 +378,19 @@ function getDirectionIcon(name) { "Continue":"continue.png", "Turn slight left":"slight-left.png", "Turn slight right":"slight-right.png", + "Turn sharp left":"sharp-left.png", + "Turn sharp right":"sharp-right.png", + "Enter round-about and leave at first exit":"round-about-9.png", + "Enter round-about and leave at second exit":"round-about-9.png", + "Enter round-about and leave at third exit":"round-about-9.png", + "Enter round-about and leave at forth exit":"round-about-9.png", + "Enter round-about and leave at fifth exit":"round-about-9.png", + "Enter round-about and leave at sixth exit":"round-about-9.png", + "Enter round-about and leave at seventh exit":"round-about-9.png", + "Enter round-about and leave at eighth exit":"round-about-9.png", + "Enter round-about and leave at nineth exit":"round-about-9.png", + "Enter round-about and leave at tenth exit":"round-about-9.png", + "Enter round-about and leave at one of the too many exit":"round-about-9.png", }; if( directions[name] )