﻿var map = null;
var infowindow = new google.maps.InfoWindow({
  content: "<form><textarea tabindex='0' id='ta_message' cols='10000' rows='250' tabindex='1' style='display:block; resize:none; margin-top:10px; border:silver 1px solid; width:360px; height:120px;'></textarea><div>E-mail (optional): <input tabindex='2' id='email' style='width:160px; display:inline;' /><input id='i_em' tabindex='3' style='display:inline; margin-left:16px;' type='button' value='Send' onclick='saveMessage(infowindow)' /></form></div>"
});
function setupGmaps() {
  if (map) return;
  var initialLocation = { wa: 37.7847538, ya: -122.3904609 };
  var siberia = new google.maps.LatLng(60, 105);
  var newyork = new google.maps.LatLng(40.69847032728747, -73.9514422416687);
  var browserSupportFlag = new Boolean();

  var myOptions = {
    zoom: 12,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }
  try {
    map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
    setCenter()
  } catch (e) { }

  function setCenter() {
    var myLatlng = new google.maps.LatLng(37.7847538, -122.3904609);
    map.setCenter(myLatlng, 13);
    var marker = new google.maps.Marker({
      position: myLatlng,
      map: map,
      icon: "../../images/bhlogo.png",
      title: "Click to send Bunker Hill a message."
    });
    google.maps.event.addListener(marker, 'click', function () {
      $("#message_bar")[0].style.display = 'none';
      infowindow.open(map, marker);
    });
  }
}
function closeMapInfoWindow() {
  infowindow.hide();
}

