Visit Us

<html> <head> <title>Meu Site de Carnes</title> <!-- Substitua "SUA_CHAVE_DE_API_DO_GOOGLE_MAPS" pela sua chave de API real --> <script src="https://maps.googleapis.com/maps/api/js?key=SUA_CHAVE_DE_API_DO_GOOGLE_MAPS&callback=initMap" async defer></script> <script> // Função de inicialização do mapa function initMap() { var addressLocation = { lat: 51.6504, lng: -0.0967 }; // Coordenadas do endereço (Latitude e Longitude) var map = new google.maps.Map(document.getElementById('map'), { center: addressLocation, zoom: 15 // Nível de zoom, ajuste conforme necessário }); var marker = new google.maps.Marker({ position: addressLocation, map: map, title: 'Endereço: 69 Lancaster Rd, Enfield EN2 0DW' }); } </script> </head> <body> <h1>Meu Site de Carnes</h1> <div id="map" style="height: 400px; width: 100%;"></div> <p>Endereço: 69 Lancaster Rd, Enfield EN2 0DW</p> </body> </html>