If I have an infobox on a google maps how do I make the infobox appear centered on the map? I specify this to center the map on the marker. But I have an richmarker box of variable width and height next to the map marker. I want that infobox to appear centered on the map.
var lat_lon = new google.maps.LatLng(latitude, longitude);
var myOptions = {
zoom: 4,
center: lat_lon,
mapTypeId: google.maps.MapTypeId.ROADMAP,
};
map = new google.maps.Map(document.getElementById('map_canvas'), myOptions);
var marker = new google.maps.Marker({
position: lat_lon,
map: map,
title: place,
icon: 'googlemaps/church3.png',
clickable: true,
});
var mappics_dir = "mappics/";
var picture_img = "";
if ( picture != undefined && picture != "" ) {
picture_img = '<div><img src="'+mappics_dir+picture+'" style="width: auto; height: 100px; min-width: 90px;"/></div>';
}
marker_info = new RichMarker({
position: lat_lon,
map: map,
draggable: true,
content: '<div class="channel_marker">' + picture_img + '<div style="width: auto;">'+place+'</div></div>',
flat: true,
anchor: RichMarkerPosition.TOP_LEFT,
});
The richmarker is anchored on the map marker. I'd like to tell the Google maps api to show the richmarker at the center of the map. Thanks.