/**
 * @author mtanaka
 * 地理上の地点を表すクラス
 * IDを持つ
 */


var GeoInfo = Class.create();

GeoInfo.prototype = {
	
	id: null,
	point: null,
	name: null,
	address: null,
	desc: null,
	url: null,
	
	/**
	 * コンストラクタ
	 * @param {string} id
	 * @param {GLatLng} point
	 * @param {string} name
	 * @param {string} address
	 * @param {string} desc
	 */
	initialize: function(id, point, name, address, desc, url) {
		this.id = id;
		this.point = point;
		this.name = name;
		this.address = address;
		this.desc = desc;
		this.url = url;
	},
	
	getId: function() { return this.id; },
	getPoint: function() { return this.point; },
	getName: function() { return this.name; },
	getAddress: function() { return this.address; },
	getDesc: function() { return this.desc; },
	getUrl: function() { return this.url; }
}