Last active
February 26, 2024 22:55
-
-
Save Klerith/9ac346fbd56d75df5ac41a57ff9605e7 to your computer and use it in GitHub Desktop.
Marcadores - Curso Angular cero a experto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface House { | |
title: string; | |
description: string; | |
lngLat: [number, number]; | |
} | |
const houses: House[] = [ | |
{ | |
title: 'Casa residencial, Canadá', | |
description: 'Bella propiedad en Katana, Canadá', | |
lngLat: [ -75.92722289474008, 45.280015511264466] | |
}, | |
{ | |
title: 'Casa de playa, México', | |
description: 'Hermosa casa de playa en Acapulco, México', | |
lngLat: [ -99.91287720907991, 16.828940930185748] | |
}, | |
{ | |
title: 'Apartamento, Argentina', | |
description: 'Lujoso apartamento en el corazón de Buenos Aires, Argentina', | |
lngLat: [ -58.430166677283445, -34.57150108832866 ] | |
}, | |
{ | |
title: 'Local comercial, España', | |
description: 'Local comercial disponible en Madrid, España, cerca de El Jardín Secreto.', | |
lngLat: [ -3.7112735618380177, 40.42567285425766 ] | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment