/**
* weatherStation Objekt
*/
function WeatherStation( address, conditionIcon, conditionName, conditionTempVal, conditionTempUnit, lat, lng, marker, iconMarker, infoWinAutoOpen, targetLink ){
	/**
	* @private
	* Referenz des aktuellen Objektes
	*/
	var self = this;
	
	/**
	* @public
	* Die Adresse der Station
	*/
	this.address = address;
	
	/**
	* @public
	* Lat der Station
	*/
	this.lat = lat;
	
	/**
	* @public
	* Long der Station
	*/
	this.lng = lng;
	
	/**
	* @public
	* Die aktuellen Wetterdaten
	*/
	this.condition = {
		icon : conditionIcon,
		name : conditionName,
		tempVal : conditionTempVal,
		tempUnit : conditionTempUnit
	}
	
	/**
	* @public
	* Marker anzeigen
	*/
	this.showMarker = marker;
	
	/**
	* @public
	* conditionIcon als Marker anzeigen
	*/
	this.iconMarker = iconMarker;
	
	/**
	* @public
	* InfoWindow Automatisch öffnen
	*/
	this.infoWinAutoOpen = infoWinAutoOpen;
	
	/**
	* @public
	* Ziellink
	*/
	this.targetLink = targetLink;	
}
