var City = function(name, description, latitude, longitude, zoom){
	this.type = "CITY";
	this.name = name;
	this.description = description;
	this.latitude = latitude;
	this.longitude = longitude;
	this.zoom = zoom;
	this.children = [];
	this.renderProjectMarkers = true;
};

City.prototype = new Space();