function OnLoad() {
var bubbletext = '
ECS House4 Broadfield CourtSheffield
S8 0XF
Get Directions
';
var options = {
title : "",
url : "",
zoomControl : GSmapSearchControl.ZOOM_CONTROL_ENABLE_ALL
}
var gmap = new GSmapSearchControl(
document.getElementById("mapsearch"),
"S8 0XF 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});
}
}