
var map;
var image;

if(typeof console === "undefined") {
    console = { log: function() { } };
}



function init_map() {
	
	// console.log('in init_map();');

  var center_latlng = new google.maps.LatLng(44.985025,-93.271769);
  var myOptions = {
    zoom: 15,
    center: center_latlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP,
		mapTypeControlOptions: {
			style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR
		},
		scrollwheel: false
  };

  map = new google.maps.Map(document.getElementById("mapCanvas"), myOptions);

	var marker = new google.maps.Marker({
		map: map,
    position: center_latlng,
		title: 'ideapark'
		// icon: image,
  });

}








