123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /*S leaflet-control-measure-distance*/
- * {
- --widthBtu: 30px;
- --heightBtu: 30px;
- }
- .leaflet-control-measure {
- border: 1px solid #000 !important;
- width: var(--widthBtu);
- height: var(--heightBtu);
- position: relative;
- text-align: center;
- text-decoration: none;
- color: black;
- display: block;
- cursor: pointer;
- float: left;
- border-bottom: none !important;
- }
- .leaflet-control-measure span {
- display: block;
- width: var(--widthBtu);
- height: var(--heightBtu);
- overflow: hidden;
- position: absolute;
- left: 0px;
- top: 0px;
- background: url(images/ico_distance.png) no-repeat center center;
- }
- .measure-tip {
- border: none;
- background: none;
- color: #fff !important;
- }
- .measure-tip .leaflet-label-tips {
- display: none;
- }
- /* .leaflet-magnifying-glass{
- cursor: pointer;
- } */
- /*E leaflet-control-measure-distance*/
- .measure-ico-del {
- background: url(images/icon-map-delete.png) center center;
- width: 30px;
- height: 30px;
- display: inline-block;
- margin-left: 10px;
- background-size: 100%;
- opacity: 0.85;
- }
- .measure-ico-del:hover,
- .measure-ico-save:hover {
- box-shadow: 0 0 4px 2px #34c6d864;
- opacity: 1;
- }
- .measure-ico-save {
- background: url(images/icon-map-save.png) center center;
- width: 30px;
- height: 30px;
- display: inline-block;
- margin-left: 10px;
- background-size: 100%;
- opacity: 0.85;
- }
- .measuremarker {
- border-radius: 5px;
- background: #fff;
- border: 1px solid #000;
- }
|