let map: google.maps.Map;

function initMap(): void {
  map = new google.maps.Map(document.getElementById("map") as HTMLElement, {
    center: { lat: 25.139821, lng: 42.815524},
    zoom: 7,
  });
}
