var VastenburgBouwAdviesBureau = new google.maps.LatLng(53.1109662, 6.0970666);
var VastenburgBouwAdviesBureau_ContentString = 'Vastenburg BouwAdviesBureau
Stationsweg19
Drachten
9201GG';
var VastenburgBouwAdviesBureau_Image = new google.maps.MarkerImage('http://www.vastenburgbouwadvies.nl/img/maps/maps_logo.png',
new google.maps.Size(135, 135),
new google.maps.Point(0,0),
new google.maps.Point(0,135));
var centerpunt = new google.maps.LatLng(53.1109662,6.0970666);
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 VastenburgBouwAdviesBureau_ContentInfo = new google.maps.InfoWindow({
content: VastenburgBouwAdviesBureau_ContentString});VastenburgBouwAdviesBureau_marker = new google.maps.Marker({
map:map,
draggable:true,
position: VastenburgBouwAdviesBureau,
icon: VastenburgBouwAdviesBureau_Image,
title:"Vastenburg BouwAdviesBureau"});google.maps.event.addListener(VastenburgBouwAdviesBureau_marker, 'click', function() {
VastenburgBouwAdviesBureau_ContentInfo.open(map,VastenburgBouwAdviesBureau_marker);});
}