//\n
\n\n
Available lots: 8
\n
Starting at $69,900
\n
From 1.5 Acres
\n
Lot Information\n
\n\n",
"\n
\n
\n
Available lots: 7
\n
Starting at $89,900
\n
From 1.6 Acres
\n
Lot Information\n

\n
\n",
"\n
\n
\n
Available lots: 2
\n
Starting at $175,000
\n
From 10.01 Acres
\n
Lot Information\n

\n
\n",
"\n
\n

\n
\n",
"\n
\n

\n
\n",
"\n
\n

\n
\n",
"\n
\n

\n
\n",
"\n
\n
\n
Available lots: 3
\n
Starting at $52,500
\n
From 4.1 Acres
\n
Lot Information\n

\n
\n",
"\n
\n
\n
Available lots: 1
\n
Starting at $39,900
\n
From 2.1 Acres
\n
Lot Information\n

\n
\n",
"\n
\n

\n
\n",
"\n
\n
\n
Available lots: 3
\n
Starting at $150,000
\n
From 5.5 Acres
\n
Lot Information\n

\n
\n",
"\n
\n

\n
\n",
"\n
\n

\n
\n",
"\n
\n
\n
Available lots: 3
\n
Starting at $100,000
\n
From 10.07 Acres
\n
Lot Information\n

\n
\n",
"\n
\n

\n
\n",
"\n
\n

\n
\n",
"\n
\n
\n
Available lots: 1
\n
Starting at $49,900
\n
From 1.1 Acres
\n
Lot Information\n

\n
\n",
"\n
\n

\n
\n");
var myMarkers = new Array();
function load() {
if (GBrowserIsCompatible())
{
var map = new GMap2(document.getElementById("map"));
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(40.42813291388417, -86.88262939453125), 11);
// As a point of documentation
// ABD Abingdon
// AMA Abby Marle
// AME Abby Meadows
// BPP Baugh Properties
// BBY Bloomberry
// BCK Bridge Creek
// DFM Devault Farm
// DHS Devault Homestead
// ETT Eastatoe
// FCS Fox Chase
// HHO Hickory Hollow
// HHI High Hill
// HRG Huston Ridge
// LMD Lambsdowne
// MWB Maxwell Blend
// RBF River Bluffs
// SPH Spring Hill
// SIW Stable in the Woods
// SLV Sullivan
// WTF Weathersfield
// WWT Wentworth
// WRG Willow Ridge
// WTG Wintergreen
// User defined function called to place markers on the map
//var cntr = 0;
for(j in dev["lat"])
{
if(dev["show"][j] == 1)
{
coordinate = new GLatLng(dev["lat"][j], dev["long"][j]);
coordinateMarker(map, coordinate, dev["info"][j], dev["abbrev"][j]);
//cntr = cntr + 1;
}
}
// If there is a get variable defined to show a marker's text, do it.
showMarkerText();
}
}
function coordinateMarker(mapObj, LatLng, window_text, id)
{
var marker = new GMarker(LatLng);
// Add the marker to an array of markers
myMarkers[id] = marker;
// Display marker
mapObj.addOverlay(marker);
// Listen for clicks on markers and display
// the conversation bubble upon click
GEvent.addListener(marker, "click", function()
{
marker.openInfoWindowHtml(window_text);
}
);
}
function addressMarker(mapObj, address, window_text, id)
{
// "mapObj" is a GMap2 object
// "address" is a string representing the address of a location
// "window_text" is the html (in string form) that will
// be displayed in the conversation window
// Initialize the geocoder (convert address to lat/long
geocoder = new GClientGeocoder();
if (geocoder)
{
// Convert "address" address into "point" lat/long
geocoder.getLatLng(address,
function(point)
{
if (!point)
alert(address + " not found");
else
coordinateMarker(mapObj, point, window_text, id);
}
);
}
}
function showMarkerText()
{
} // This bracket ends the showMarkerText() function{}
//]]>