function PoiObject( lo,la,na,ad,te,id,lsid ){//¾­,Î³,name,address,tel,id,lsid
	this.Longitude = parseInt(lo);
	this.Latitude = parseInt(la);
	this.Name = na;
	this.Address = ad;
	this.Tel = te;
	this.Id = id;
	this.Lsid = lsid;
	this.LTPoint = new LTPoint( this.Longitude , this.Latitude );
}
PoiObject.prototype.getLatitude = function(){
	return this.Latitude;
}
PoiObject.prototype.getLongitude = function(){
	return this.Longitude;
}
PoiObject.prototype.getName = function(){
	return this.Name;
}
PoiObject.prototype.getAddress = function(){
	return this.Address;
}
PoiObject.prototype.getTel = function(){
	return this.Tel;
}
PoiObject.prototype.getId = function(){
	return this.Id;
}
PoiObject.prototype.getLsid = function(){
	return this.Lsid;
}


PoiObject.prototype.setLatitude = function(a){
	this.Latitude = parseInt(a);
}
PoiObject.prototype.setLongitude = function(a){
	this.Longitude = parseInt(a);
}
PoiObject.prototype.setName = function(n){
	this.Name = n;
}
PoiObject.prototype.setAddress = function(a){
	this.Address = a;
}
PoiObject.prototype.setTel = function(t){
	this.Tel = t;
}
PoiObject.prototype.getLTPoint = function(){
	return this.LTPoint;
}
PoiObject.prototype.setLTPoint = function(lo,la){
	this.LTPoint = new LTPoint( lo,la );
}
PoiObject.prototype.setId = function(a){
	this.Id = parseInt(a);
}
PoiObject.prototype.setLsid = function(a){
	this.Lsid = parseInt(a);
}