diff --git a/src/app/features/componentes-test/pages/reutilizables-test-page/reutilizables-test-page.component.html b/src/app/features/componentes-test/pages/reutilizables-test-page/reutilizables-test-page.component.html
index d3d5d8c..43309d7 100644
--- a/src/app/features/componentes-test/pages/reutilizables-test-page/reutilizables-test-page.component.html
+++ b/src/app/features/componentes-test/pages/reutilizables-test-page/reutilizables-test-page.component.html
@@ -706,7 +706,7 @@
diff --git a/src/app/features/store/pages/event-detail-page/event-detail-page.component.html b/src/app/features/store/pages/event-detail-page/event-detail-page.component.html
index 1f19a06..036b09e 100644
--- a/src/app/features/store/pages/event-detail-page/event-detail-page.component.html
+++ b/src/app/features/store/pages/event-detail-page/event-detail-page.component.html
@@ -37,7 +37,7 @@
class="event-detail__map"
[locations]="mapLocations()"
ariaLabel="Ubicación del evento"
- mapStyle="minimal-light"
+ mapStyle="standard"
/>
}
diff --git a/src/app/features/store/pages/help-page/pages/contact-page/contact-page.html b/src/app/features/store/pages/help-page/pages/contact-page/contact-page.html
index 102e263..39f84e1 100644
--- a/src/app/features/store/pages/help-page/pages/contact-page/contact-page.html
+++ b/src/app/features/store/pages/help-page/pages/contact-page/contact-page.html
@@ -45,7 +45,7 @@
class="contact-page__map"
[locations]="contact().mapLocations"
[markerColor]="markerColor()"
- mapStyle="minimal-light"
+ mapStyle="standard"
ariaLabel="Mapa de sucursales y puntos de atención"
/>
}
diff --git a/src/app/features/store/pages/help-page/pages/contact-page/contact-page.spec.ts b/src/app/features/store/pages/help-page/pages/contact-page/contact-page.spec.ts
index 0ac1315..92982df 100644
--- a/src/app/features/store/pages/help-page/pages/contact-page/contact-page.spec.ts
+++ b/src/app/features/store/pages/help-page/pages/contact-page/contact-page.spec.ts
@@ -128,7 +128,7 @@ describe('ContactPage', () => {
);
expect(map).not.toBeNull();
- expect(map?.getAttribute('mapstyle')).toBe('minimal-light');
+ expect(map?.getAttribute('mapstyle')).toBe('standard');
expect(accessibleLocations).toHaveLength(2);
expect(map?.textContent).toContain('Gigante de Arroyito');
expect(map?.textContent).toContain('Telepagos');
diff --git a/src/app/shared/components/location-map/location-map.component.ts b/src/app/shared/components/location-map/location-map.component.ts
index 7b9ab19..237437e 100644
--- a/src/app/shared/components/location-map/location-map.component.ts
+++ b/src/app/shared/components/location-map/location-map.component.ts
@@ -13,7 +13,7 @@ import {
} from '@angular/core';
import type { LayerGroup, Map as LeafletMap, LatLngBounds, LatLngTuple, TileLayer } from 'leaflet';
-export type MapStyle = 'minimal-light' | 'standard';
+export type MapStyle = 'standard';
const MAP_LAYERS: Record<
MapStyle,
@@ -23,12 +23,6 @@ const MAP_LAYERS: Record<
maxZoom: number;
}
> = {
- 'minimal-light': {
- url: 'https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png',
- attribution:
- '© OpenStreetMap contributors © CARTO',
- maxZoom: 20,
- },
standard: {
url: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
attribution:
@@ -56,7 +50,7 @@ export class LocationMapComponent implements AfterViewInit, OnChanges, OnDestroy
@Input() fallbackCenter: LatLngTuple = [-32.94682, -60.63932];
@Input() fallbackZoom = 13;
@Input() maxFitZoom = 15;
- @Input() mapStyle: MapStyle = 'minimal-light';
+ @Input() mapStyle: MapStyle = 'standard';
@Input() markerColor = '#24a9e0';
@ViewChild('mapContainer', { static: true })