Store Locator
Directorio de tiendas físicas con mapa interactivo. A diferencia de la sección directory, incluye un mapa embebido (Google Maps, OpenStreetMap) y selección interactiva de ubicaciones.
Configuración
| Campo | Tipo | Default | Descripción |
|---|---|---|---|
title | text | Nuestras tiendas | Título |
subtitle | textarea | — | Subtítulo |
columns | number | 2 | Columnas del grid |
bg_color | color | #FFFFFF | Color de fondo |
map_embed | textarea | — | iframe del mapa (Google Maps embed) |
map_zoom | number | 12 | Zoom del mapa |
cta_text | text | — | Texto del botón CTA |
cta_url | url | — | URL del CTA |
items | gallery | [] | Array de ubicaciones |
Estructura de cada item
| Campo | Tipo | Descripción |
|---|---|---|
image | image | Foto del local |
name | text | Nombre de la ubicación |
url | url | Link a Google Maps o más info |
address | text | Dirección |
Ejemplo
{
"title": "Nuestras tiendas",
"columns": 2,
"map_embed": "<iframe src=\"https://www.google.com/maps/embed?...\" width=\"100%\" height=\"400\"></iframe>",
"map_zoom": 13,
"items": [
{ "image": "/uploads/tienda-lima.jpg", "name": "Lima Centro", "url": "https://maps.google.com/...", "address": "Av. Principal 123" },
{ "image": "/uploads/tienda-miraflores.jpg", "name": "Miraflores", "address": "Calle Las Palmas 456" }
]
}