var sportpark = new google.maps.LatLng(52.529381,6.121466);
var haersterveerweg = new google.maps.LatLng(52.529381,6.121466);
var marker;
var map;
 
 
function initialize() {
  var mapOptions = {
	streetViewControl: true,
	streetViewControlOptions: {
	style: google.maps.ZoomControlStyle.SMALL,
	position: google.maps.ControlPosition.RIGHT_CENTER
	},
	zoomControl: true,
	zoomControlOptions: {
	style: google.maps.ZoomControlStyle.SMALL,
	position: google.maps.ControlPosition.RIGHT_CENTER
	},
	zoom: 9,
	mapTypeControl: false,
	  navigationControl: false,
	mapTypeId: google.maps.MapTypeId.ROADMAP,
	center: sportpark
  };
 
  map = new google.maps.Map(document.getElementById("map_canvas"),
	  mapOptions);
 
  marker = new google.maps.Marker({
	map:map,
	draggable:false,
	animation: google.maps.Animation.NONE,
	position: haersterveerweg
	});

}
window.onload=initialize;
