Presentation of directions
This commit is contained in:
parent
99cf44ba2b
commit
c6e8775dba
2 changed files with 22 additions and 2 deletions
|
@ -106,10 +106,18 @@ OSM.Routing=function(map,name,jqSearch) {
|
|||
instText+=TURN_INSTRUCTIONS[instCodes[0]];
|
||||
if (instCodes[1]) { instText+="exit "+instCodes[1]+" "; }
|
||||
if (instCodes[0]!=15) { instText+=step[1] ? "<b>"+step[1]+"</b>" : "(unnamed)"; }
|
||||
// Distance
|
||||
var dist=step[2];
|
||||
if (dist<5) { dist=""; }
|
||||
else if (dist<200) { dist=Math.round(dist/10)*10+"m"; }
|
||||
else if (dist<1500) { dist=Math.round(dist/100)*100+"m"; }
|
||||
else if (dist<5000) { dist=Math.round(dist/100)/10+"km"; }
|
||||
else { dist=Math.round(dist/1000)+"km"; }
|
||||
// Add to table
|
||||
html+="<tr>";
|
||||
html+="<td class='direction i"+instCodes[0]+"'> ";
|
||||
html+="<td>"+instText;
|
||||
html+="<td class='instruction'>"+instText;
|
||||
html+="<td class='distance'>"+dist;
|
||||
}
|
||||
html+="</table>";
|
||||
$('#sidebar_content').html(html);
|
||||
|
|
|
@ -996,7 +996,9 @@ header .search_form {
|
|||
/* Rules for routing */
|
||||
|
||||
#sidebar_content>table {
|
||||
margin: 20px 0px 10px 15px;
|
||||
padding: 5px 20px 10px 15px;
|
||||
width: 100%;
|
||||
border-collapse: separate;
|
||||
}
|
||||
|
||||
td.direction {
|
||||
|
@ -1008,6 +1010,16 @@ td.direction {
|
|||
td.direction.i#{$i} { background-position: #{($i)*-20+20}px 0px; }
|
||||
}
|
||||
|
||||
td.instruction, td.distance {
|
||||
padding-top: 0;
|
||||
border-bottom: 1px solid #DDD;
|
||||
}
|
||||
td.distance {
|
||||
color: #BBB;
|
||||
text-align: right;
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
/* Rules for entity history */
|
||||
|
||||
#sidebar_content {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue