2010-09-16 21:08:56 +08:00
|
|
|
/* required styles */
|
|
|
|
|
2013-12-31 01:17:52 +08:00
|
|
|
.leaflet-pane,
|
2011-01-12 22:51:00 +08:00
|
|
|
.leaflet-tile,
|
2011-09-09 21:32:43 +08:00
|
|
|
.leaflet-marker-icon,
|
2011-03-22 01:09:43 +08:00
|
|
|
.leaflet-marker-shadow,
|
2013-02-23 01:03:52 +08:00
|
|
|
.leaflet-tile-container,
|
2016-11-11 17:45:34 +08:00
|
|
|
.leaflet-pane > svg,
|
|
|
|
.leaflet-pane > canvas,
|
2011-03-22 01:46:25 +08:00
|
|
|
.leaflet-zoom-box,
|
2012-07-27 10:12:40 +08:00
|
|
|
.leaflet-image-layer,
|
2012-11-09 21:20:11 +08:00
|
|
|
.leaflet-layer {
|
2011-01-12 22:51:00 +08:00
|
|
|
position: absolute;
|
2012-10-29 05:18:38 +08:00
|
|
|
left: 0;
|
2012-12-10 23:57:04 +08:00
|
|
|
top: 0;
|
2011-01-12 22:51:00 +08:00
|
|
|
}
|
2010-09-16 21:08:56 +08:00
|
|
|
.leaflet-container {
|
|
|
|
overflow: hidden;
|
2010-09-27 22:45:48 +08:00
|
|
|
}
|
2011-09-09 21:32:43 +08:00
|
|
|
.leaflet-tile,
|
|
|
|
.leaflet-marker-icon,
|
2011-01-12 22:51:00 +08:00
|
|
|
.leaflet-marker-shadow {
|
2010-09-16 21:59:14 +08:00
|
|
|
-webkit-user-select: none;
|
2012-11-09 21:34:48 +08:00
|
|
|
-moz-user-select: none;
|
|
|
|
user-select: none;
|
2014-07-06 05:40:23 +08:00
|
|
|
-webkit-user-drag: none;
|
2014-01-28 00:18:04 +08:00
|
|
|
}
|
|
|
|
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
|
|
|
|
.leaflet-safari .leaflet-tile {
|
|
|
|
image-rendering: -webkit-optimize-contrast;
|
|
|
|
}
|
|
|
|
/* hack that prevents hw layers "stretching" when loading new tiles */
|
|
|
|
.leaflet-safari .leaflet-tile-container {
|
|
|
|
width: 1600px;
|
|
|
|
height: 1600px;
|
|
|
|
-webkit-transform-origin: 0 0;
|
2011-01-12 22:51:00 +08:00
|
|
|
}
|
2011-09-09 21:32:43 +08:00
|
|
|
.leaflet-marker-icon,
|
2011-01-12 22:51:00 +08:00
|
|
|
.leaflet-marker-shadow {
|
2010-12-15 23:14:15 +08:00
|
|
|
display: block;
|
|
|
|
}
|
2014-09-04 03:07:30 +08:00
|
|
|
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
|
|
|
|
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
|
2015-05-09 14:54:44 +08:00
|
|
|
.leaflet-container .leaflet-overlay-pane svg,
|
2015-07-20 07:36:23 +08:00
|
|
|
.leaflet-container .leaflet-marker-pane img,
|
2016-10-25 17:28:19 +08:00
|
|
|
.leaflet-container .leaflet-shadow-pane img,
|
2015-07-23 00:39:43 +08:00
|
|
|
.leaflet-container .leaflet-tile-pane img,
|
2012-06-26 16:48:43 +08:00
|
|
|
.leaflet-container img.leaflet-image-layer {
|
2015-07-23 00:39:43 +08:00
|
|
|
max-width: none !important;
|
2017-09-19 15:03:21 +08:00
|
|
|
max-height: none !important;
|
2012-11-09 21:34:48 +08:00
|
|
|
}
|
2016-06-01 22:41:50 +08:00
|
|
|
|
|
|
|
.leaflet-container.leaflet-touch-zoom {
|
|
|
|
-ms-touch-action: pan-x pan-y;
|
|
|
|
touch-action: pan-x pan-y;
|
|
|
|
}
|
|
|
|
.leaflet-container.leaflet-touch-drag {
|
|
|
|
-ms-touch-action: pinch-zoom;
|
2017-12-15 23:36:00 +08:00
|
|
|
/* Fallback for FF which doesn't support pinch-zoom */
|
|
|
|
touch-action: none;
|
|
|
|
touch-action: pinch-zoom;
|
|
|
|
}
|
2016-12-13 17:26:06 +08:00
|
|
|
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
|
2016-06-01 22:41:50 +08:00
|
|
|
-ms-touch-action: none;
|
|
|
|
touch-action: none;
|
|
|
|
}
|
2017-02-03 17:13:15 +08:00
|
|
|
.leaflet-container {
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
}
|
|
|
|
.leaflet-container a {
|
|
|
|
-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
|
|
|
|
}
|
2011-04-14 21:32:36 +08:00
|
|
|
.leaflet-tile {
|
2012-11-09 21:34:48 +08:00
|
|
|
filter: inherit;
|
|
|
|
visibility: hidden;
|
2011-04-14 21:32:36 +08:00
|
|
|
}
|
|
|
|
.leaflet-tile-loaded {
|
|
|
|
visibility: inherit;
|
|
|
|
}
|
2012-06-26 16:48:43 +08:00
|
|
|
.leaflet-zoom-box {
|
2012-11-09 21:34:48 +08:00
|
|
|
width: 0;
|
|
|
|
height: 0;
|
2013-12-27 23:22:16 +08:00
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
2015-07-16 21:47:54 +08:00
|
|
|
z-index: 800;
|
2012-11-09 21:34:48 +08:00
|
|
|
}
|
2013-06-29 00:21:52 +08:00
|
|
|
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
|
|
|
|
.leaflet-overlay-pane svg {
|
|
|
|
-moz-user-select: none;
|
|
|
|
}
|
2011-01-12 22:51:00 +08:00
|
|
|
|
2015-07-03 03:02:47 +08:00
|
|
|
.leaflet-pane { z-index: 400; }
|
2013-12-31 01:17:52 +08:00
|
|
|
|
2015-07-03 03:02:47 +08:00
|
|
|
.leaflet-tile-pane { z-index: 200; }
|
|
|
|
.leaflet-overlay-pane { z-index: 400; }
|
|
|
|
.leaflet-shadow-pane { z-index: 500; }
|
|
|
|
.leaflet-marker-pane { z-index: 600; }
|
2016-07-08 19:48:32 +08:00
|
|
|
.leaflet-tooltip-pane { z-index: 650; }
|
2015-07-03 03:02:47 +08:00
|
|
|
.leaflet-popup-pane { z-index: 700; }
|
2012-11-09 21:20:11 +08:00
|
|
|
|
2015-07-03 03:02:47 +08:00
|
|
|
.leaflet-map-pane canvas { z-index: 100; }
|
|
|
|
.leaflet-map-pane svg { z-index: 200; }
|
2013-12-17 08:04:07 +08:00
|
|
|
|
2013-11-08 22:42:52 +08:00
|
|
|
.leaflet-vml-shape {
|
|
|
|
width: 1px;
|
|
|
|
height: 1px;
|
|
|
|
}
|
|
|
|
.lvml {
|
|
|
|
behavior: url(#default#VML);
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
2012-11-09 21:20:11 +08:00
|
|
|
|
|
|
|
/* control positioning */
|
2011-04-11 20:49:15 +08:00
|
|
|
|
2011-04-15 17:26:22 +08:00
|
|
|
.leaflet-control {
|
|
|
|
position: relative;
|
2015-07-20 00:35:20 +08:00
|
|
|
z-index: 800;
|
2016-07-01 17:14:13 +08:00
|
|
|
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
|
2012-07-27 05:17:55 +08:00
|
|
|
pointer-events: auto;
|
2011-04-15 17:26:22 +08:00
|
|
|
}
|
2011-04-11 20:49:15 +08:00
|
|
|
.leaflet-top,
|
|
|
|
.leaflet-bottom {
|
|
|
|
position: absolute;
|
2012-07-26 22:42:27 +08:00
|
|
|
z-index: 1000;
|
2012-07-27 05:17:55 +08:00
|
|
|
pointer-events: none;
|
2011-04-11 20:49:15 +08:00
|
|
|
}
|
|
|
|
.leaflet-top {
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
.leaflet-right {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
.leaflet-bottom {
|
|
|
|
bottom: 0;
|
2011-09-09 21:32:43 +08:00
|
|
|
}
|
2011-04-11 20:49:15 +08:00
|
|
|
.leaflet-left {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
.leaflet-control {
|
|
|
|
float: left;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.leaflet-right .leaflet-control {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.leaflet-top .leaflet-control {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.leaflet-bottom .leaflet-control {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
.leaflet-left .leaflet-control {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
.leaflet-right .leaflet-control {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
2012-11-09 21:20:11 +08:00
|
|
|
|
|
|
|
/* zoom and fade animations */
|
|
|
|
|
2015-02-07 07:50:24 +08:00
|
|
|
.leaflet-fade-anim .leaflet-tile {
|
2015-02-06 09:12:36 +08:00
|
|
|
will-change: opacity;
|
|
|
|
}
|
2012-11-09 21:34:48 +08:00
|
|
|
.leaflet-fade-anim .leaflet-popup {
|
2012-11-09 21:20:11 +08:00
|
|
|
opacity: 0;
|
|
|
|
-webkit-transition: opacity 0.2s linear;
|
2012-11-09 21:34:48 +08:00
|
|
|
-moz-transition: opacity 0.2s linear;
|
|
|
|
-o-transition: opacity 0.2s linear;
|
|
|
|
transition: opacity 0.2s linear;
|
2012-11-09 21:20:11 +08:00
|
|
|
}
|
2012-11-09 21:34:48 +08:00
|
|
|
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
|
2012-11-09 21:20:11 +08:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2015-06-05 02:12:50 +08:00
|
|
|
.leaflet-zoom-animated {
|
|
|
|
-webkit-transform-origin: 0 0;
|
|
|
|
-ms-transform-origin: 0 0;
|
|
|
|
transform-origin: 0 0;
|
|
|
|
}
|
2015-02-07 07:50:24 +08:00
|
|
|
.leaflet-zoom-anim .leaflet-zoom-animated {
|
2015-02-06 09:12:36 +08:00
|
|
|
will-change: transform;
|
|
|
|
}
|
2012-11-09 21:20:11 +08:00
|
|
|
.leaflet-zoom-anim .leaflet-zoom-animated {
|
|
|
|
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
|
2012-11-09 21:34:48 +08:00
|
|
|
-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
|
|
-o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
|
|
transition: transform 0.25s cubic-bezier(0,0,0.25,1);
|
2012-11-09 21:20:11 +08:00
|
|
|
}
|
|
|
|
.leaflet-zoom-anim .leaflet-tile,
|
2014-01-14 02:54:13 +08:00
|
|
|
.leaflet-pan-anim .leaflet-tile {
|
2012-11-09 21:34:48 +08:00
|
|
|
-webkit-transition: none;
|
|
|
|
-moz-transition: none;
|
|
|
|
-o-transition: none;
|
|
|
|
transition: none;
|
|
|
|
}
|
2012-11-09 21:20:11 +08:00
|
|
|
|
|
|
|
.leaflet-zoom-anim .leaflet-zoom-hide {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* cursors */
|
|
|
|
|
2014-08-05 23:14:02 +08:00
|
|
|
.leaflet-interactive {
|
2012-11-09 21:20:11 +08:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2015-02-16 04:18:44 +08:00
|
|
|
.leaflet-grab {
|
2012-11-09 21:20:11 +08:00
|
|
|
cursor: -webkit-grab;
|
2012-11-09 21:34:48 +08:00
|
|
|
cursor: -moz-grab;
|
2012-11-09 21:20:11 +08:00
|
|
|
}
|
2013-12-27 23:22:16 +08:00
|
|
|
.leaflet-crosshair,
|
2014-08-05 23:14:02 +08:00
|
|
|
.leaflet-crosshair .leaflet-interactive {
|
2013-12-27 23:22:16 +08:00
|
|
|
cursor: crosshair;
|
|
|
|
}
|
2012-11-09 21:34:48 +08:00
|
|
|
.leaflet-popup-pane,
|
|
|
|
.leaflet-control {
|
2012-11-09 21:20:11 +08:00
|
|
|
cursor: auto;
|
|
|
|
}
|
2015-02-16 04:18:44 +08:00
|
|
|
.leaflet-dragging .leaflet-grab,
|
2015-02-18 05:39:19 +08:00
|
|
|
.leaflet-dragging .leaflet-grab .leaflet-interactive,
|
|
|
|
.leaflet-dragging .leaflet-marker-draggable {
|
2012-11-09 21:20:11 +08:00
|
|
|
cursor: move;
|
|
|
|
cursor: -webkit-grabbing;
|
2012-11-09 21:34:48 +08:00
|
|
|
cursor: -moz-grabbing;
|
2012-11-09 21:20:11 +08:00
|
|
|
}
|
|
|
|
|
2016-04-03 01:33:02 +08:00
|
|
|
/* marker & overlays interactivity */
|
|
|
|
.leaflet-marker-icon,
|
|
|
|
.leaflet-marker-shadow,
|
|
|
|
.leaflet-image-layer,
|
|
|
|
.leaflet-pane > svg path,
|
|
|
|
.leaflet-tile-container {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.leaflet-marker-icon.leaflet-interactive,
|
|
|
|
.leaflet-image-layer.leaflet-interactive,
|
|
|
|
.leaflet-pane > svg path.leaflet-interactive {
|
2016-07-01 17:14:13 +08:00
|
|
|
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
|
2016-04-03 01:33:02 +08:00
|
|
|
pointer-events: auto;
|
|
|
|
}
|
2012-11-09 21:20:11 +08:00
|
|
|
|
|
|
|
/* visual tweaks */
|
|
|
|
|
|
|
|
.leaflet-container {
|
|
|
|
background: #ddd;
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
.leaflet-container a {
|
|
|
|
color: #0078A8;
|
|
|
|
}
|
|
|
|
.leaflet-container a.leaflet-active {
|
2012-11-09 21:34:48 +08:00
|
|
|
outline: 2px solid orange;
|
|
|
|
}
|
2012-11-09 21:20:11 +08:00
|
|
|
.leaflet-zoom-box {
|
2013-11-08 22:24:47 +08:00
|
|
|
border: 2px dotted #38f;
|
|
|
|
background: rgba(255,255,255,0.5);
|
2012-11-09 21:20:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-09 21:34:48 +08:00
|
|
|
/* general typography */
|
|
|
|
.leaflet-container {
|
|
|
|
font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
|
2013-01-16 23:08:06 +08:00
|
|
|
}
|
2012-11-09 21:34:48 +08:00
|
|
|
|
|
|
|
|
2013-01-16 23:08:06 +08:00
|
|
|
/* general toolbar styles */
|
2012-11-09 21:20:11 +08:00
|
|
|
|
2013-01-16 23:08:06 +08:00
|
|
|
.leaflet-bar {
|
2013-11-14 00:45:03 +08:00
|
|
|
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
|
2013-11-14 00:46:26 +08:00
|
|
|
border-radius: 4px;
|
2011-07-13 01:19:29 +08:00
|
|
|
}
|
2013-11-08 21:53:27 +08:00
|
|
|
.leaflet-bar a,
|
|
|
|
.leaflet-bar a:hover {
|
2013-01-21 22:55:48 +08:00
|
|
|
background-color: #fff;
|
2013-01-29 09:00:26 +08:00
|
|
|
border-bottom: 1px solid #ccc;
|
2013-01-23 21:16:42 +08:00
|
|
|
width: 26px;
|
|
|
|
height: 26px;
|
|
|
|
line-height: 26px;
|
2013-01-23 21:34:44 +08:00
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
.leaflet-bar a,
|
|
|
|
.leaflet-control-layers-toggle {
|
|
|
|
background-position: 50% 50%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.leaflet-bar a:hover {
|
|
|
|
background-color: #f4f4f4;
|
2013-01-16 23:08:06 +08:00
|
|
|
}
|
2013-01-23 21:16:42 +08:00
|
|
|
.leaflet-bar a:first-child {
|
2013-11-14 00:46:26 +08:00
|
|
|
border-top-left-radius: 4px;
|
|
|
|
border-top-right-radius: 4px;
|
2013-01-16 23:08:06 +08:00
|
|
|
}
|
2013-01-23 21:16:42 +08:00
|
|
|
.leaflet-bar a:last-child {
|
2013-11-14 00:46:26 +08:00
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
2013-01-16 23:08:06 +08:00
|
|
|
border-bottom: none;
|
|
|
|
}
|
2013-01-23 21:34:44 +08:00
|
|
|
.leaflet-bar a.leaflet-disabled {
|
|
|
|
cursor: default;
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
color: #bbb;
|
|
|
|
}
|
2013-01-16 23:08:06 +08:00
|
|
|
|
2013-01-23 21:34:44 +08:00
|
|
|
.leaflet-touch .leaflet-bar a {
|
2013-11-14 01:49:44 +08:00
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
2013-01-16 23:08:06 +08:00
|
|
|
}
|
2017-02-27 23:42:16 +08:00
|
|
|
.leaflet-touch .leaflet-bar a:first-child {
|
|
|
|
border-top-left-radius: 2px;
|
|
|
|
border-top-right-radius: 2px;
|
|
|
|
}
|
|
|
|
.leaflet-touch .leaflet-bar a:last-child {
|
|
|
|
border-bottom-left-radius: 2px;
|
|
|
|
border-bottom-right-radius: 2px;
|
|
|
|
}
|
2013-01-16 23:08:06 +08:00
|
|
|
|
|
|
|
/* zoom control */
|
|
|
|
|
2013-11-14 00:45:03 +08:00
|
|
|
.leaflet-control-zoom-in,
|
|
|
|
.leaflet-control-zoom-out {
|
2013-01-23 21:16:42 +08:00
|
|
|
font: bold 18px 'Lucida Console', Monaco, monospace;
|
2013-11-14 00:45:03 +08:00
|
|
|
text-indent: 1px;
|
2011-04-11 20:49:15 +08:00
|
|
|
}
|
2011-09-09 21:32:43 +08:00
|
|
|
|
2017-06-04 18:56:23 +08:00
|
|
|
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
|
2013-01-21 22:55:48 +08:00
|
|
|
font-size: 22px;
|
2012-11-13 22:48:25 +08:00
|
|
|
}
|
2012-11-09 21:20:11 +08:00
|
|
|
|
2013-01-21 22:55:48 +08:00
|
|
|
|
2012-11-09 21:20:11 +08:00
|
|
|
/* layers control */
|
|
|
|
|
2011-07-13 01:19:29 +08:00
|
|
|
.leaflet-control-layers {
|
2013-11-14 00:45:03 +08:00
|
|
|
box-shadow: 0 1px 5px rgba(0,0,0,0.4);
|
2013-11-08 21:53:27 +08:00
|
|
|
background: #fff;
|
2013-11-14 00:46:26 +08:00
|
|
|
border-radius: 5px;
|
2011-07-13 01:19:29 +08:00
|
|
|
}
|
2012-10-10 07:05:12 +08:00
|
|
|
.leaflet-control-layers-toggle {
|
2011-07-13 01:19:29 +08:00
|
|
|
background-image: url(images/layers.png);
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
|
|
|
}
|
2013-06-11 20:44:21 +08:00
|
|
|
.leaflet-retina .leaflet-control-layers-toggle {
|
|
|
|
background-image: url(images/layers-2x.png);
|
|
|
|
background-size: 26px 26px;
|
|
|
|
}
|
2012-10-10 07:05:12 +08:00
|
|
|
.leaflet-touch .leaflet-control-layers-toggle {
|
2011-07-13 01:19:29 +08:00
|
|
|
width: 44px;
|
|
|
|
height: 44px;
|
|
|
|
}
|
|
|
|
.leaflet-control-layers .leaflet-control-layers-list,
|
|
|
|
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.leaflet-control-layers-expanded .leaflet-control-layers-list {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.leaflet-control-layers-expanded {
|
|
|
|
padding: 6px 10px 6px 6px;
|
|
|
|
color: #333;
|
2011-07-13 19:38:46 +08:00
|
|
|
background: #fff;
|
2011-07-13 01:19:29 +08:00
|
|
|
}
|
2015-06-30 19:59:20 +08:00
|
|
|
.leaflet-control-layers-scrollbar {
|
|
|
|
overflow-y: scroll;
|
2017-08-06 20:06:21 +08:00
|
|
|
overflow-x: hidden;
|
2015-06-30 19:59:20 +08:00
|
|
|
padding-right: 5px;
|
|
|
|
}
|
2012-10-10 07:05:12 +08:00
|
|
|
.leaflet-control-layers-selector {
|
2011-07-13 01:19:29 +08:00
|
|
|
margin-top: 2px;
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
}
|
|
|
|
.leaflet-control-layers label {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.leaflet-control-layers-separator {
|
|
|
|
height: 0;
|
|
|
|
border-top: 1px solid #ddd;
|
|
|
|
margin: 5px -10px 5px -6px;
|
|
|
|
}
|
|
|
|
|
2016-08-22 22:40:03 +08:00
|
|
|
/* Default icon URLs */
|
|
|
|
.leaflet-default-icon-path {
|
2016-09-30 18:11:52 +08:00
|
|
|
background-image: url(images/marker-icon.png);
|
2016-08-22 22:40:03 +08:00
|
|
|
}
|
|
|
|
|
2012-11-09 21:20:11 +08:00
|
|
|
|
|
|
|
/* attribution and scale controls */
|
|
|
|
|
2011-04-14 23:48:14 +08:00
|
|
|
.leaflet-container .leaflet-control-attribution {
|
2013-11-08 21:53:27 +08:00
|
|
|
background: #fff;
|
|
|
|
background: rgba(255, 255, 255, 0.7);
|
2011-04-14 23:48:14 +08:00
|
|
|
margin: 0;
|
2012-11-09 21:34:48 +08:00
|
|
|
}
|
2012-02-25 23:04:27 +08:00
|
|
|
.leaflet-control-attribution,
|
|
|
|
.leaflet-control-scale-line {
|
2011-04-14 23:48:14 +08:00
|
|
|
padding: 0 5px;
|
2012-02-25 23:04:27 +08:00
|
|
|
color: #333;
|
2013-11-13 20:03:12 +08:00
|
|
|
}
|
2013-11-13 23:37:21 +08:00
|
|
|
.leaflet-control-attribution a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.leaflet-control-attribution a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2012-02-25 23:04:27 +08:00
|
|
|
.leaflet-container .leaflet-control-attribution,
|
|
|
|
.leaflet-container .leaflet-control-scale {
|
2012-11-09 21:34:48 +08:00
|
|
|
font-size: 11px;
|
2012-02-25 23:04:27 +08:00
|
|
|
}
|
|
|
|
.leaflet-left .leaflet-control-scale {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
.leaflet-bottom .leaflet-control-scale {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
.leaflet-control-scale-line {
|
|
|
|
border: 2px solid #777;
|
|
|
|
border-top: none;
|
2012-11-14 17:55:34 +08:00
|
|
|
line-height: 1.1;
|
2012-11-13 22:48:25 +08:00
|
|
|
padding: 2px 5px 1px;
|
2012-11-14 17:55:34 +08:00
|
|
|
font-size: 11px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2015-10-08 18:14:25 +08:00
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
2013-11-08 21:53:27 +08:00
|
|
|
|
|
|
|
background: #fff;
|
|
|
|
background: rgba(255, 255, 255, 0.5);
|
2012-02-25 23:04:27 +08:00
|
|
|
}
|
2012-07-29 20:10:03 +08:00
|
|
|
.leaflet-control-scale-line:not(:first-child) {
|
2012-02-25 23:04:27 +08:00
|
|
|
border-top: 2px solid #777;
|
|
|
|
border-bottom: none;
|
|
|
|
margin-top: -2px;
|
2011-04-14 23:48:14 +08:00
|
|
|
}
|
2012-07-29 20:10:03 +08:00
|
|
|
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
|
|
|
|
border-bottom: 2px solid #777;
|
|
|
|
}
|
2011-04-11 20:49:15 +08:00
|
|
|
|
2012-11-13 22:48:25 +08:00
|
|
|
.leaflet-touch .leaflet-control-attribution,
|
|
|
|
.leaflet-touch .leaflet-control-layers,
|
2013-07-18 00:26:23 +08:00
|
|
|
.leaflet-touch .leaflet-bar {
|
2012-02-23 22:13:09 +08:00
|
|
|
box-shadow: none;
|
2012-02-25 23:04:27 +08:00
|
|
|
}
|
2012-11-13 22:48:25 +08:00
|
|
|
.leaflet-touch .leaflet-control-layers,
|
2013-07-18 00:26:23 +08:00
|
|
|
.leaflet-touch .leaflet-bar {
|
2013-11-14 00:53:12 +08:00
|
|
|
border: 2px solid rgba(0,0,0,0.2);
|
2013-11-13 20:00:17 +08:00
|
|
|
background-clip: padding-box;
|
2012-02-25 23:04:27 +08:00
|
|
|
}
|
2012-02-23 22:13:09 +08:00
|
|
|
|
2011-04-11 20:49:15 +08:00
|
|
|
|
2012-11-09 21:20:11 +08:00
|
|
|
/* popup */
|
2011-01-10 19:05:14 +08:00
|
|
|
|
2010-12-16 01:55:57 +08:00
|
|
|
.leaflet-popup {
|
2011-01-10 19:05:14 +08:00
|
|
|
position: absolute;
|
2010-12-16 01:55:57 +08:00
|
|
|
text-align: center;
|
2016-06-01 22:21:43 +08:00
|
|
|
margin-bottom: 20px;
|
2010-12-16 01:55:57 +08:00
|
|
|
}
|
2011-01-12 23:15:18 +08:00
|
|
|
.leaflet-popup-content-wrapper {
|
|
|
|
padding: 1px;
|
2010-12-16 01:55:57 +08:00
|
|
|
text-align: left;
|
2013-11-14 00:46:26 +08:00
|
|
|
border-radius: 12px;
|
2010-12-16 01:55:57 +08:00
|
|
|
}
|
2011-01-12 23:15:18 +08:00
|
|
|
.leaflet-popup-content {
|
2013-06-11 20:44:21 +08:00
|
|
|
margin: 13px 19px;
|
2012-11-09 21:34:48 +08:00
|
|
|
line-height: 1.4;
|
2012-11-09 21:20:11 +08:00
|
|
|
}
|
|
|
|
.leaflet-popup-content p {
|
|
|
|
margin: 18px 0;
|
2011-01-12 23:15:18 +08:00
|
|
|
}
|
2010-12-16 01:55:57 +08:00
|
|
|
.leaflet-popup-tip-container {
|
2011-01-10 19:05:14 +08:00
|
|
|
width: 40px;
|
2012-07-16 19:13:29 +08:00
|
|
|
height: 20px;
|
2016-06-01 22:21:43 +08:00
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -20px;
|
2010-12-16 01:55:57 +08:00
|
|
|
overflow: hidden;
|
2016-06-01 22:21:43 +08:00
|
|
|
pointer-events: none;
|
2010-12-16 01:55:57 +08:00
|
|
|
}
|
|
|
|
.leaflet-popup-tip {
|
2013-06-11 20:44:21 +08:00
|
|
|
width: 17px;
|
|
|
|
height: 17px;
|
2011-01-13 18:17:50 +08:00
|
|
|
padding: 1px;
|
2011-09-09 21:32:43 +08:00
|
|
|
|
2013-06-11 20:44:21 +08:00
|
|
|
margin: -10px auto 0;
|
2011-09-09 21:32:43 +08:00
|
|
|
|
2011-01-12 22:51:00 +08:00
|
|
|
-webkit-transform: rotate(45deg);
|
2012-11-09 21:34:48 +08:00
|
|
|
-moz-transform: rotate(45deg);
|
|
|
|
-ms-transform: rotate(45deg);
|
|
|
|
-o-transform: rotate(45deg);
|
|
|
|
transform: rotate(45deg);
|
2010-12-16 01:55:57 +08:00
|
|
|
}
|
2013-11-08 21:53:27 +08:00
|
|
|
.leaflet-popup-content-wrapper,
|
|
|
|
.leaflet-popup-tip {
|
2012-11-09 21:20:11 +08:00
|
|
|
background: white;
|
2015-01-07 06:34:35 +08:00
|
|
|
color: #333;
|
2012-11-13 22:48:25 +08:00
|
|
|
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
|
2012-11-09 21:20:11 +08:00
|
|
|
}
|
2012-07-12 21:22:14 +08:00
|
|
|
.leaflet-container a.leaflet-popup-close-button {
|
2011-01-13 18:17:50 +08:00
|
|
|
position: absolute;
|
2012-07-13 21:47:25 +08:00
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2013-06-11 20:44:21 +08:00
|
|
|
padding: 4px 4px 0 0;
|
2015-06-13 23:59:14 +08:00
|
|
|
border: none;
|
2012-07-12 21:22:14 +08:00
|
|
|
text-align: center;
|
2012-07-13 21:47:25 +08:00
|
|
|
width: 18px;
|
|
|
|
height: 14px;
|
|
|
|
font: 16px/14px Tahoma, Verdana, sans-serif;
|
|
|
|
color: #c3c3c3;
|
2012-07-12 21:22:14 +08:00
|
|
|
text-decoration: none;
|
|
|
|
font-weight: bold;
|
2012-11-18 22:03:08 +08:00
|
|
|
background: transparent;
|
2012-07-12 21:22:14 +08:00
|
|
|
}
|
|
|
|
.leaflet-container a.leaflet-popup-close-button:hover {
|
|
|
|
color: #999;
|
2011-01-13 18:17:50 +08:00
|
|
|
}
|
2012-02-17 21:32:40 +08:00
|
|
|
.leaflet-popup-scrolled {
|
|
|
|
overflow: auto;
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
border-top: 1px solid #ddd;
|
|
|
|
}
|
2011-01-13 18:17:50 +08:00
|
|
|
|
2013-11-08 22:42:52 +08:00
|
|
|
.leaflet-oldie .leaflet-popup-content-wrapper {
|
|
|
|
zoom: 1;
|
|
|
|
}
|
|
|
|
.leaflet-oldie .leaflet-popup-tip {
|
|
|
|
width: 24px;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
|
|
|
|
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
|
|
|
|
}
|
|
|
|
.leaflet-oldie .leaflet-popup-tip-container {
|
|
|
|
margin-top: -1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.leaflet-oldie .leaflet-control-zoom,
|
|
|
|
.leaflet-oldie .leaflet-control-layers,
|
|
|
|
.leaflet-oldie .leaflet-popup-content-wrapper,
|
|
|
|
.leaflet-oldie .leaflet-popup-tip {
|
|
|
|
border: 1px solid #999;
|
|
|
|
}
|
|
|
|
|
2011-01-13 18:17:50 +08:00
|
|
|
|
2012-11-09 21:20:11 +08:00
|
|
|
/* div icon */
|
2011-01-12 22:51:00 +08:00
|
|
|
|
2012-06-26 16:48:43 +08:00
|
|
|
.leaflet-div-icon {
|
2012-11-09 21:34:48 +08:00
|
|
|
background: #fff;
|
|
|
|
border: 1px solid #666;
|
|
|
|
}
|
2015-10-18 04:42:17 +08:00
|
|
|
|
|
|
|
|
2016-07-08 19:48:32 +08:00
|
|
|
/* Tooltip */
|
2016-07-02 16:56:11 +08:00
|
|
|
/* Base styles for the element that has a tooltip */
|
2016-07-08 19:48:32 +08:00
|
|
|
.leaflet-tooltip {
|
2015-10-18 04:42:17 +08:00
|
|
|
position: absolute;
|
2016-07-02 16:56:11 +08:00
|
|
|
padding: 6px;
|
|
|
|
background-color: #fff;
|
2016-07-08 17:25:19 +08:00
|
|
|
border: 1px solid #fff;
|
2016-07-08 20:30:04 +08:00
|
|
|
border-radius: 3px;
|
2016-07-02 16:56:11 +08:00
|
|
|
color: #222;
|
|
|
|
white-space: nowrap;
|
2015-10-18 04:42:17 +08:00
|
|
|
-webkit-user-select: none;
|
2016-07-02 16:56:11 +08:00
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
2015-10-18 04:42:17 +08:00
|
|
|
pointer-events: none;
|
2016-07-08 20:30:04 +08:00
|
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.4);
|
2016-07-02 16:56:11 +08:00
|
|
|
}
|
2016-07-08 19:48:32 +08:00
|
|
|
.leaflet-tooltip.leaflet-clickable {
|
2015-10-18 04:42:17 +08:00
|
|
|
cursor: pointer;
|
|
|
|
pointer-events: auto;
|
2016-07-02 16:56:11 +08:00
|
|
|
}
|
2016-07-08 19:48:32 +08:00
|
|
|
.leaflet-tooltip-top:before,
|
|
|
|
.leaflet-tooltip-bottom:before,
|
|
|
|
.leaflet-tooltip-left:before,
|
|
|
|
.leaflet-tooltip-right:before {
|
2015-10-18 04:42:17 +08:00
|
|
|
position: absolute;
|
2016-07-02 16:56:11 +08:00
|
|
|
pointer-events: none;
|
|
|
|
border: 6px solid transparent;
|
|
|
|
background: transparent;
|
|
|
|
content: "";
|
|
|
|
}
|
2015-10-18 04:42:17 +08:00
|
|
|
|
2016-07-02 16:56:11 +08:00
|
|
|
/* Directions */
|
2016-05-06 19:30:58 +08:00
|
|
|
|
2016-08-02 22:51:22 +08:00
|
|
|
.leaflet-tooltip-bottom {
|
|
|
|
margin-top: 6px;
|
|
|
|
}
|
|
|
|
.leaflet-tooltip-top {
|
|
|
|
margin-top: -6px;
|
|
|
|
}
|
2016-07-08 19:48:32 +08:00
|
|
|
.leaflet-tooltip-bottom:before,
|
|
|
|
.leaflet-tooltip-top:before {
|
2016-07-02 16:56:11 +08:00
|
|
|
left: 50%;
|
|
|
|
margin-left: -6px;
|
|
|
|
}
|
2016-07-08 19:48:32 +08:00
|
|
|
.leaflet-tooltip-top:before {
|
2016-07-02 16:56:11 +08:00
|
|
|
bottom: 0;
|
|
|
|
margin-bottom: -12px;
|
2016-07-08 17:25:19 +08:00
|
|
|
border-top-color: #fff;
|
2016-07-02 16:56:11 +08:00
|
|
|
}
|
2016-07-08 19:48:32 +08:00
|
|
|
.leaflet-tooltip-bottom:before {
|
2016-07-02 16:56:11 +08:00
|
|
|
top: 0;
|
|
|
|
margin-top: -12px;
|
|
|
|
margin-left: -6px;
|
2016-07-08 17:25:19 +08:00
|
|
|
border-bottom-color: #fff;
|
2016-07-02 16:56:11 +08:00
|
|
|
}
|
2016-08-02 22:51:22 +08:00
|
|
|
.leaflet-tooltip-left {
|
|
|
|
margin-left: -6px;
|
|
|
|
}
|
|
|
|
.leaflet-tooltip-right {
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
2016-07-08 19:48:32 +08:00
|
|
|
.leaflet-tooltip-left:before,
|
|
|
|
.leaflet-tooltip-right:before {
|
2016-07-02 16:56:11 +08:00
|
|
|
top: 50%;
|
|
|
|
margin-top: -6px;
|
|
|
|
}
|
2016-07-08 19:48:32 +08:00
|
|
|
.leaflet-tooltip-left:before {
|
2016-07-02 16:56:11 +08:00
|
|
|
right: 0;
|
|
|
|
margin-right: -12px;
|
2016-07-08 17:25:19 +08:00
|
|
|
border-left-color: #fff;
|
2016-07-02 16:56:11 +08:00
|
|
|
}
|
2016-07-08 19:48:32 +08:00
|
|
|
.leaflet-tooltip-right:before {
|
2016-07-02 16:56:11 +08:00
|
|
|
left: 0;
|
|
|
|
margin-left: -12px;
|
2016-07-08 17:25:19 +08:00
|
|
|
border-right-color: #fff;
|
2016-07-02 16:56:11 +08:00
|
|
|
}
|