function OnLoad() {
var bubbletext = "Paul Jones Insurance Services Ltd
Kings House, 316 Shirley Road, Southampton, Hants
SO15 3HL
Get Directions
";
var options = {
title : "Paul Jones Insurance Services Ltd",
url : "http://pjis.co.uk",
zoomControl : GSmapSearchControl.ZOOM_CONTROL_ENABLE_ALL
}
var gmap = new GSmapSearchControl(
document.getElementById("mapsearch"),
"SO15 3HL UK",
options
);
// show the center of the map
GSmapSearchControl.prototype.onCenterClick = function() {
this.mapCenterMarker.openInfoWindow(bubbletext, {maxWidth:200});
}
// show the center of the map
GSmapSearchControl.prototype.onIdleCenterClick = function() {
// transition to semi-active state and open the center info window
this.clearMarkers();
GSmapsc_cssSetClass(this.prevNext, "gsmc-prevNext gsmsc-prev-next-active");
GSmapsc_cssSetClass(this.appContainer, "gsmsc-appContainer gsmsc-active");
GSmapsc_cssSetClass(this.prev, "gsmsc-prev gsmsc-prev-idle");
GSmapsc_cssSetClass(this.next, "gsmsc-next gsmsc-next-idle");
this.searchForm.input.value = "";
this.gmap.checkResize();
this.idle = false;
this.mapCenterMarker.openInfoWindow(bubbletext, {maxWidth:200});
}
}