diff --git a/ordinis-admin-ui/src/components/geo/AoiPickerDialog.tsx b/ordinis-admin-ui/src/components/geo/AoiPickerDialog.tsx index 8c06e46..be50a93 100644 --- a/ordinis-admin-ui/src/components/geo/AoiPickerDialog.tsx +++ b/ordinis-admin-ui/src/components/geo/AoiPickerDialog.tsx @@ -81,9 +81,11 @@ export const AoiPickerDialog = ({ isOpen, onClose, onApply, initial }: Props) => } // Россия по умолчанию: центр ~Урал, zoom видит всю страну. - const map = L.map(div, { zoomControl: true }).setView([60, 90], 3) + // attributionControl: false убирает Leaflet-флаг + OSM credit + // (ukrainian flag emoji в Leaflet 1.9.4 default attribution). + const map = L.map(div, { zoomControl: true, attributionControl: false }) + .setView([60, 90], 3) L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { - attribution: '© OpenStreetMap contributors', maxZoom: 18, }).addTo(map)