/**
 * @author MTB
 */
function MTBPoint(Lat, Lon){
	this.Lat_ = Lat;
	this.Lon_ = Lon;
}

MTBPoint.prototype.initialize = function(){}

MTBPoint.prototype.GetLat = function(){
	return this.Lat_;
}

MTBPoint.prototype.SetLat = function(Lat){
	this.Lat_ = Lat;
}

MTBPoint.prototype.GetLon = function(){
	return this.Lon_;
}

MTBPoint.prototype.SetLon = function(Lon){
	this.Lon_ = Lon;
}

