diff --git a/WebContent/OSRM.config.js b/WebContent/OSRM.config.js index 2aff5eaba..22cbeae83 100644 --- a/WebContent/OSRM.config.js +++ b/WebContent/OSRM.config.js @@ -19,6 +19,7 @@ or see http://www.gnu.org/licenses/agpl.txt. // [has to be loaded directly after OSRM.base] OSRM.DEFAULTS = { + MAINTENANCE: true, HOST_ROUTING_URL: 'http://router.project-osrm.org/viaroute', HOST_SHORTENER_URL: 'http://map.project-osrm.org/shorten/', HOST_TIMESTAMP_URL: 'http://router.project-osrm.org/timestamp', diff --git a/WebContent/main.css b/WebContent/main.css index e7ec3aed2..14f2317af 100644 --- a/WebContent/main.css +++ b/WebContent/main.css @@ -425,6 +425,32 @@ html, body { width:390px; height:80px; } +#notification-wrapper +{ + width:600px; + height:170px; + top: 50%; + left: 50%; + margin-top:-85px; + margin-left:-300px; +} +#notification-content +{ + width:580px; + height:150px; +} +#notification-blanket +{ + position:absolute; + top:0px; + left:0px; + width:100%; + height:100%; + background-color:#666666; + background-color:rgba(0, 0, 0, 0.25); + z-index:100; + display:none; +} /* styles for content of other gui boxes */ @@ -458,6 +484,10 @@ html, body { { float: right; } +#notification-box +{ + margin:5px 5px 5px 5px; +} /* ------------------------------------------------------------------------ */ diff --git a/WebContent/main.html b/WebContent/main.html index 11fc63f4b..ef75ec919 100644 --- a/WebContent/main.html +++ b/WebContent/main.html @@ -86,6 +86,31 @@ or see http://www.gnu.org/licenses/agpl.txt.
+ +