| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /* 解决leaflet瓦片显示有白线问题 */
- .leaflet-tile-container img {
- width: 257px !important;
- height: 257px !important;
- }
- .leaflet-bar {
- width: 30px;
- font-size: 12px;
- background-color: #ffffff !important;
- }
- .leaflet-control-common {
- margin-bottom: 2px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background-color: #ffffff !important;
- color: #9d9d9d !important;
- filter: grayscale(100%);
- }
- .leaflet-control-selected {
- margin-bottom: 2px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- color: #282828 !important;
- /* color: #ff8d1a !important; */
- background-color: #ffffff !important;
- }
- .leaflet-bar-ico {
- width: 21px;
- height: 21px;
- margin-top: 5px;
- margin-bottom: 2px;
- }
- .my-div-icon {
- z-index: -1000 !important;
- text-align: center;
- font-size: 12px;
- font-weight: bold;
- color: #ac33c1;
- }
|