/* ---------------------------------------------------------------------------
Copyright:
	Davis Instruments, (c) 2010

Code by:
	Author:  Andy Schmidt
	Created: 01/15/2010

Notes:
	Best viewed with TAB-Size = 4

ToDo:
	Todo items are marked with a $$$ comment

Revisions:

--------------------------------------------------------------------------- */

//--------------------------------------
function MapStation(oloc,sdid,dtemp,suser,sstation,omark) {

	this.isOnMap		= 0;			// Flag indicating if this Station is currently in the Map viewport
	this.oLocation		= oloc;			// Lat/Lng
	this.sDID			= sdid;			// Device ID (DID)
	this.dTempF			= dtemp;		// Current Temperature, dash value is 3276.7
	this.sUsername		= suser;		// Website User name
	this.sStationName	= sstation;		// Website Station name
	this.oMarker		= omark;		// A GMarker using a color coded icon according to the current temperature
}
