function map_location( id, area_id, title, description, lat, lon, type ) {

	this.id 			= id;
	this.area_id 		= area_id;
	this.title 			= title;
	this.description 	= description;
	this.point			= new GLatLng( lat, lon );
	this.lat			= lat;
	this.lon			= lon;
	this.type			= type;

} //end location

map_location.prototype.get_id = function() { return this.id; }
map_location.prototype.get_area_id = function() { return this.area_id; }
map_location.prototype.get_point = function() { return this.point; }
map_location.prototype.get_type = function() { return this.type; }
map_location.prototype.get_title = function() { return this.title; }
map_location.prototype.get_description = function() { return this.description; }
map_location.prototype.get_lat = function() { return this.lat; }
map_location.prototype.get_lon = function() { return this.lon; }