/* Исправления путей к изображениям для Leaflet */
.leaflet-control-layers-toggle {
    background-image: url('layers.png');
    background-repeat: no-repeat;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
    only screen and (min--moz-device-pixel-ratio: 2),
    only screen and (-o-min-device-pixel-ratio: 2/1),
    only screen and (min-device-pixel-ratio: 2),
    only screen and (min-resolution: 192dpi),
    only screen and (min-resolution: 2dppx) {
    .leaflet-control-layers-toggle {
        background-image: url('layers-2x.png');
        background-size: 26px 26px;
    }
}

.leaflet-default-icon-path {
    background-image: url('marker-icon.png');
}

.leaflet-marker-shadow {
    background-image: url('marker-shadow.png');
} 