var LangewoldBeheer = new google.maps.LatLng(, );
var LangewoldBeheer_ContentString = 'Langewold Beheer
Nieuwstraat22
Zuidhorn
9801CS';
var LangewoldBeheer_Image = new google.maps.MarkerImage('http://langewoldbeheer.nl/img/maps/maps_logo.png',
new google.maps.Size(250, 143),
new google.maps.Point(0,0),
new google.maps.Point(20,118));
var centerpunt = new google.maps.LatLng(,);
var marker;
var map;
function initialize() {
var mapOptions = {
zoom: 9,
mapTypeId: google.maps.MapTypeId.ROADMAP,
center: centerpunt
};
map = new google.maps.Map(document.getElementById('map_canvas'),mapOptions);
var LangewoldBeheer_ContentInfo = new google.maps.InfoWindow({
content: LangewoldBeheer_ContentString});LangewoldBeheer_marker = new google.maps.Marker({
map:map,
draggable:true,
position: LangewoldBeheer,
icon: LangewoldBeheer_Image,
title:"Langewold Beheer"});google.maps.event.addListener(LangewoldBeheer_marker, 'click', function() {
LangewoldBeheer_ContentInfo.open(map,LangewoldBeheer_marker);});
}