google.load("maps", "2.x");
google.setOnLoadCallback(function() {
  var map = document.getElementById('map');
  var mapObject = new google.maps.Map2(map);
  mapObject.setCenter(
    new google.maps.LatLng(
      51.800268993039424, -0.19665956497192383),
    13);
  // google.maps.Event.addListener(mapObject, "click", function() {
  //   alert(this.getCenter().lat() + ", " + this.getCenter().lng());
  // });
  mapObject.addControl(new google.maps.SmallMapControl);
  var theChurch = new google.maps.Marker(
    new google.maps.LatLng(
      51.800268993039424, -0.19665956497192383),
    {title: "The Campus Church"});
  mapObject.addOverlay(theChurch);
});