Fix Map Control Styles

This commit is contained in:
2025-10-03 14:40:06 -03:00
parent 9e0e7f0ee6
commit 68f31f2873
2 changed files with 10 additions and 10 deletions

View File

@@ -54,9 +54,8 @@ interface MapaNacionalProps {
// --- CONFIGURACIONES DEL MAPA ---
const desktopProjectionConfig = { scale: 700, center: [-65, -40] as [number, number] };
const mobileProjectionConfig = { scale: 1050, center: [-64, -43] as [number, number] };
const mobileSmallProjectionConfig = { scale: 900, center: [-64, -43] as [number, number] };
const mobileProjectionConfig = { scale: 1000, center: [-64, -43] as [number, number] };
const mobileSmallProjectionConfig = { scale: 750, center: [-64, -45] as [number, number] };
export const MapaNacional = ({ eleccionId, categoriaId, nivel, nombreAmbito, nombreProvinciaActiva, provinciaDistritoId, onAmbitoSelect, onVolver, isMobileView }: MapaNacionalProps) => {
const isMobileSmall = useMediaQuery('(max-width: 380px)');