{% extends 'base.html.twig' %}
{% block body %}
<article>
<p class="texts">{{ 'Contacts.ShortInfo'|trans }}</p>
<p><i>{{ 'Contacts.Comment'|trans }}</i></p>
<div id="googleMap"></div>
<div class="mapover">
<h3>AmeLat Group SIA</h3>
<p>Valdeķu iela 1-9<br>
Rīga, LV-1004<br>
Latvija
</p>
<h3>{{ 'Contacts.Contacts'|trans }}</h3>
<p>Didzis Āva<br>
+371 28 609 607<br>
didzis@amelatgroup.com
</p>
<h3>{{ 'Contacts.Properties'|trans }}</h3>
<p>AS Swedbank<br>
LV89HABA0551033406670<br>
Reģistrācijas Nr. 45403033945<br>
PVN Nr. LV45403033945
</p>
</div>
</article>
{% endblock %}
{% block javascripts %}
<script
src="https://maps-api-ssl.google.com/maps/api/js?key=AIzaSyDdXrMg7iT-mdb6yWltSG9EanFPbKLLB8Q&sensor=false">
</script>
<script>
const centerLV = new google.maps.LatLng(56.918521, 24.093467);
let marker;
function initialize()
{
const mapProp = {
center: centerLV,
scrollwheel: false,
zoom: 15,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
const map = new google.maps.Map(document.getElementById("googleMap"), mapProp);
const image = '_images/map-marker.png';
marker = new google.maps.Marker({
position:centerLV,
map: map,
icon: image,
title: 'AmeLat Group SIA'
});
marker.setMap(map);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
{% endblock %}