// Initialize and add the map
function initMap(): void {
  // The location of Dahlonega
  const Dahlonega = { lat: 34.533691, lng: -83.983269 };
  // The map, centered at Dahlonega
  const map = new google.maps.Map(
    document.getElementById("map") as HTMLElement,
    {
      zoom: 4,
      center: Dahlonega,
    }
  );

  // The marker, positioned at Dahlonega
  const marker = new google.maps.Marker({
    position: Dahlonega,
    map: map,
  });
}