1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /*S leaflet-control-measure-distance*/
- * {
- --widthBtu: 40px;
- --heightBtu: 40px;
- }
- .leaflet-control-measure {
- border: 1px solid #00aaff !important;
- width: var(--widthBtu);
- height: var(--heightBtu);
- position: relative;
- text-align: center;
- text-decoration: none;
- color: black;
- display: block;
- cursor: pointer;
- float: left;
- }
- .leaflet-control-measure span {
- display: block;
- width: var(--widthBtu);
- height: var(--heightBtu);
- overflow: hidden;
- position: absolute;
- left: 0px;
- top: 0px;
- background: url(images/biaojiYidian.png) no-repeat center center;
- background-size: 60%;
- }
- .leaflet-control-measure span:hover {
- background-size: 70%;
- }
- .leaflet-control-measure span:active {
- background-size: 60%;
- }
- .measure-tip {
- border: none;
- background: none;
- color: #00aaff !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-list: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;
- }
- .measure-ico-list {
- background: url(images/icon-map-list.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;
- }
- .measure-result-text {
- background-color: #fff;
- padding: 0 5px;
- border-radius: 3px;
- }
|