UPD - leaflet-routing
This commit is contained in:
parent
290d3fc815
commit
b25bf536ff
|
|
@ -1,7 +1,14 @@
|
||||||
.leaflet-routing-container {
|
.leaflet-routing-container, .leaflet-routing-error {
|
||||||
width: 320px;
|
width: 320px;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
padding-top: 4px;
|
padding-top: 4px;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-control-container .leaflet-routing-container-hide {
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.leaflet-routing-container h2 {
|
.leaflet-routing-container h2 {
|
||||||
|
|
@ -13,7 +20,11 @@
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.leaflet-routing-alt, .leaflet-routing-geocoders {
|
.leaflet-routing-collapsible .leaflet-routing-geocoders {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-alt, .leaflet-routing-geocoders, .leaflet-routing-error {
|
||||||
padding: 6px;
|
padding: 6px;
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
margin-bottom: 6px;
|
margin-bottom: 6px;
|
||||||
|
|
@ -23,6 +34,11 @@
|
||||||
transition: all 0.2s ease;
|
transition: all 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.leaflet-control-container .leaflet-routing-container-hide .leaflet-routing-alt,
|
||||||
|
.leaflet-control-container .leaflet-routing-container-hide .leaflet-routing-geocoders {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.leaflet-bar .leaflet-routing-alt:last-child {
|
.leaflet-bar .leaflet-routing-alt:last-child {
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
|
|
@ -57,9 +73,40 @@
|
||||||
background-color: #888;
|
background-color: #888;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-icon {
|
||||||
|
background-image: url('leaflet.routing.icons.png');
|
||||||
|
-webkit-background-size: 240px 20px;
|
||||||
|
background-size: 240px 20px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
margin: 0;
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-icon-continue { background-position: 0 0; }
|
||||||
|
.leaflet-routing-icon-sharp-right { background-position: -20px 0; }
|
||||||
|
.leaflet-routing-icon-turn-right { background-position: -40px 0; }
|
||||||
|
.leaflet-routing-icon-bear-right { background-position: -60px 0; }
|
||||||
|
.leaflet-routing-icon-u-turn { background-position: -80px 0; }
|
||||||
|
.leaflet-routing-icon-sharp-left { background-position: -100px 0; }
|
||||||
|
.leaflet-routing-icon-turn-left { background-position: -120px 0; }
|
||||||
|
.leaflet-routing-icon-bear-left { background-position: -140px 0; }
|
||||||
|
.leaflet-routing-icon-depart { background-position: -160px 0; }
|
||||||
|
.leaflet-routing-icon-enter-roundabout { background-position: -180px 0; }
|
||||||
|
.leaflet-routing-icon-arrive { background-position: -200px 0; }
|
||||||
|
.leaflet-routing-icon-via { background-position: -220px 0; }
|
||||||
|
|
||||||
|
.leaflet-routing-geocoders div {
|
||||||
|
padding: 4px 0px 4px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
.leaflet-routing-geocoders input {
|
.leaflet-routing-geocoders input {
|
||||||
width: 292px;
|
width: 303px;
|
||||||
padding: 4px;
|
width: calc(100% - 4px);
|
||||||
|
line-height: 1.67;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -68,21 +115,37 @@
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
margin: 0 6px;
|
margin: 0;
|
||||||
|
margin-right: 3px;
|
||||||
float: right;
|
float: right;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: background-color 0.2s ease;
|
transition: background-color 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-add-waypoint:after {
|
||||||
|
content: '+';
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-reverse-waypoints:after {
|
||||||
|
font-weight: normal;
|
||||||
|
content: '\21c5';
|
||||||
|
}
|
||||||
|
|
||||||
.leaflet-routing-geocoders button:hover {
|
.leaflet-routing-geocoders button:hover {
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-geocoders input,.leaflet-routing-remove-waypoint,.leaflet-routing-geocoder {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
.leaflet-routing-geocoder-result {
|
.leaflet-routing-geocoder-result {
|
||||||
|
font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
max-height: 0;
|
max-height: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: all 0.5s ease;
|
transition: all 0.5s ease;
|
||||||
|
z-index: 1000; /* Arbitrary, but try to be above "most" things. */
|
||||||
}
|
}
|
||||||
|
|
||||||
.leaflet-routing-geocoder-result table {
|
.leaflet-routing-geocoder-result table {
|
||||||
|
|
@ -100,3 +163,96 @@
|
||||||
.leaflet-routing-geocoder-selected, .leaflet-routing-geocoder-result tr:hover {
|
.leaflet-routing-geocoder-selected, .leaflet-routing-geocoder-result tr:hover {
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-geocoder-no-results {
|
||||||
|
font-style: italic;
|
||||||
|
color: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-remove-waypoint {
|
||||||
|
background-color: transparent;
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-remove-waypoint:after {
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
width: 15px;
|
||||||
|
height: 1px;
|
||||||
|
z-index: 1;
|
||||||
|
right: 1px;
|
||||||
|
top: 4px;
|
||||||
|
bottom: 0;
|
||||||
|
margin: auto;
|
||||||
|
padding: 2px;
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: bold;
|
||||||
|
content: "\00d7";
|
||||||
|
text-align: center;
|
||||||
|
cursor: pointer;
|
||||||
|
color: #ccc;
|
||||||
|
background: white;
|
||||||
|
padding-bottom: 16px;
|
||||||
|
margin-top: -16px;
|
||||||
|
padding-right: 4px;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-remove-waypoint:hover {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-instruction-distance {
|
||||||
|
width: 48px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-collapse-btn {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 6px;
|
||||||
|
font-size: 24px;
|
||||||
|
color: #ccc;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-collapse-btn:after {
|
||||||
|
content: '\00d7';
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-container-hide .leaflet-routing-collapse-btn {
|
||||||
|
position: relative;
|
||||||
|
left: 4px;
|
||||||
|
top: 4px;
|
||||||
|
display: block;
|
||||||
|
width: 26px;
|
||||||
|
height: 23px;
|
||||||
|
background-image: url('routing-icon.png');
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-routing-container-hide .leaflet-routing-collapse-btn:after {
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-top .leaflet-routing-container.leaflet-routing-container-hide {
|
||||||
|
margin-top: 10px !important;
|
||||||
|
}
|
||||||
|
.leaflet-right .leaflet-routing-container.leaflet-routing-container-hide {
|
||||||
|
margin-right: 10px !important;
|
||||||
|
}
|
||||||
|
.leaflet-bottom .leaflet-routing-container.leaflet-routing-container-hide {
|
||||||
|
margin-bottom: 10px !important;
|
||||||
|
}
|
||||||
|
.leaflet-left .leaflet-routing-container.leaflet-routing-container-hide {
|
||||||
|
margin-left: 10px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 640px) {
|
||||||
|
.leaflet-routing-container {
|
||||||
|
margin: 0 !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue