leaflet.draw.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*S leaflet-control-measure-distance*/
  2. .leaflet-control-measure {
  3. border:1px solid #000 !important;
  4. width: 26px;
  5. height: 26px;
  6. position: relative;
  7. }
  8. .leaflet-control-measure {
  9. width: 26px;
  10. height: 26px;
  11. text-align: center;
  12. text-decoration: none;
  13. color: black;
  14. display: block;
  15. cursor: pointer;
  16. float: left;
  17. border-bottom: none !important;
  18. }
  19. .leaflet-control-measure span {
  20. display: block;
  21. width: 26px;
  22. height: 26px;
  23. overflow: hidden;
  24. position: absolute;
  25. left: 0px;
  26. top: 0px;
  27. background:url(images/ico_distance.png) no-repeat center center;
  28. }
  29. .measure-tip {
  30. border: none;
  31. background:none;
  32. color:#fff !important;
  33. }
  34. .measure-tip .leaflet-label-tips {
  35. display:none;
  36. }
  37. /* .leaflet-magnifying-glass{
  38. cursor: pointer;
  39. } */
  40. /*E leaflet-control-measure-distance*/
  41. .measure-ico-del{
  42. background: url(images/icon-map-delete.png) center center;
  43. width: 30px;
  44. height: 30px;
  45. display: inline-block;
  46. margin-left: 10px;
  47. background-size:100%;
  48. opacity: 0.85;
  49. }
  50. .measure-ico-del:hover,.measure-ico-save:hover{
  51. box-shadow: 0 0 4px 2px #34c6d864;
  52. opacity: 1;
  53. }
  54. .measure-ico-save{
  55. background: url(images/icon-map-save.png) center center;
  56. width: 30px;
  57. height: 30px;
  58. display: inline-block;
  59. margin-left: 10px;
  60. background-size:100%;
  61. opacity: 0.85;
  62. }
  63. .measuremarker{
  64. border-radius: 5px;
  65. background:#fff;
  66. border: 1px solid #000;
  67. }