1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /*S leaflet-control-measure-distance*/
- .leaflet-control-measure {
- border:1px solid #000 !important;
- width: 26px;
- height: 26px;
- position: relative;
- }
- .leaflet-control-measure {
- width: 26px;
- height: 26px;
- 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: 26px;
- height: 26px;
- 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-delete.png) center center;
- width: 15px;
- height: 15px;
- display: inline-block;
- margin-left: 10px;
- }
- .measuremarker{
- border-radius: 5px;
- background:#fff;
- border: 1px solid #000;
- }
|