function addMarkers(){
mySelect = document.getElementById('selection');
Beulaville = [];Wallace = [];Warsaw = [];mySelect.options[mySelect.options.length] = new Option("Beulaville schools",'all=Beulaville');
mySelect.options[mySelect.options.length] = new Option("Wallace schools",'all=Wallace');
mySelect.options[mySelect.options.length] = new Option("Warsaw schools",'all=Warsaw');
mySelect.options[mySelect.options.length] = new Option("---------------------------",'');
Beulaville[Beulaville.length] = createMarker(new GPoint(-77.76080000,34.92280000),"
",iconGr);
mySelect.options[mySelect.options.length] = new Option("Champion Educational Center",'Beulaville=' + Beulaville.length);
Wallace[Wallace.length] = createMarker(new GPoint(-77.99820000,34.73445100),"",iconGr);
mySelect.options[mySelect.options.length] = new Option("New Hope Christian Academy",'Wallace=' + Wallace.length);
Warsaw[Warsaw.length] = createMarker(new GPoint(-78.03665100,34.98226300),"",iconGr);
mySelect.options[mySelect.options.length] = new Option("West Duplin Christian Academy",'Warsaw=' + Warsaw.length);
} // End addStateMarkers JavaScript Function
// Takes an array of markers and centers/zooms map based on marker range
function centerByArray(myArray, recenter, newMaxMin)
{
if (newMaxMin == true)
reMaxMin(myArray);
for (var i = 0; i < myArray.length; i++)
{
var markLng = myArray[i].getPoint().x;
var markLat = myArray[i].getPoint().y;
if (markLat > maxLat) maxLat = markLat;
if (markLng > maxLng) maxLng = markLng;
if (markLat < minLat) minLat = markLat;
if (markLng < minLng) minLng = markLng;
}
if (recenter)
reCenterMap();
}
// Reinit max/mins
function reMaxMin(myArray)
{
maxLng = myArray[0].getPoint().x;
maxLat = myArray[0].getPoint().y;
minLng = myArray[0].getPoint().x;
minLat = myArray[0].getPoint().y;
}
// Recenter map based on global max/mins
function reCenterMap()
{
var bounds = new GLatLngBounds();
bounds.extend(new GLatLng(minLat, minLng));
bounds.extend(new GLatLng(maxLat, maxLng));
var center_lat = (bounds.getNorthEast().lat() + bounds.getSouthWest().lat()) / 2.0;
var center_lng = (bounds.getNorthEast().lng() + bounds.getSouthWest().lng()) / 2.0;
var center = new GLatLng(center_lat, center_lng);
var zoom = map.getBoundsZoomLevel(bounds);
map.setCenter(center,zoom);
//map.setCenter(center,11);
/*
var center = new GPoint( (maxLng + minLng)/2, (maxLat+minLat)/2 );
var delta = new GSize(maxLng - minLng, maxLat - minLat);
var minZoom = map.spec.getLowestZoomLevel(center, delta, map.viewSize);
if (minZoom < 4) minZoom = 4; // Lowest possible zoom is 4
map.centerAndZoom(center, minZoom);
*/
}
// Fires when drop down list of schools changes
function selectChange(selection)
{
var myVal = selection.options[selection.selectedIndex].value;
map.closeInfoWindow();
// Add entire array based on variable type
if (myVal.indexOf('all') != -1 && myVal != 'all')
{
var temp = myVal.split('=');
var showArray = temp[1];
// If Array is > X amount of markers, then open in a new page
if (eval(showArray).length > 20)
// New window depends on whether or not we're on the search page
if (location.href.indexOf('nearby_schools.php') == -1)
window.open(location.href + '/map/' + showArray);
else
window.open('/search/////2/' + showArray);
map.removeOverlays(Beulaville);
map.removeOverlays(Wallace);
map.removeOverlays(Warsaw);
map.addOverlays(eval(showArray));
centerByArray(eval(showArray), true, true); // Center and zoom on set of markers
}
// Add individual markers
if (myVal.indexOf('all') == -1 && myVal != 'all' && myVal.length)
{
var temp = myVal.split('=');
var myArray = temp[0];
var myIndex = parseInt(temp[1]) - 1;
document.getElementById('map').width = "750";
map.removeOverlay(eval(myArray)[myIndex]);
map.addOverlay(eval(myArray)[myIndex]);
GEvent.trigger(eval(myArray)[myIndex],'click');
}
// Show all markers
if (myVal == 'all')
{
cntMarker = 0;
reMaxMin(Beulaville);map.removeOverlays(Beulaville);
map.removeOverlays(Wallace);
map.removeOverlays(Warsaw);
map.addOverlays(Beulaville);
centerByArray(Beulaville, false, false);
cntMarker += Beulaville.length;
map.addOverlays(Wallace);
centerByArray(Wallace, false, false);
cntMarker += Wallace.length;
map.addOverlays(Warsaw);
centerByArray(Warsaw, false, false);
cntMarker += Warsaw.length;
centerByArray(Beulaville,true, false);
if (cntMarker > 20)
// New window depends on whether or not we're on the search page
if (location.href.indexOf('schools-by-distance') == -1)
window.open(location.href + '/map/all');
else
window.open('/search////all');
//window.open('/map.php?type=1&schools=&school_level=2&radius=&zipcode=&school_type_search=&school_type_code=');
}
}
function createMarker(point, label, icon)
{
var marker = new GMarker(point, icon);
var html = label;
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml(html);
});
return marker;
}