function ExtendedLatLng(latlng,distance) {

	this.glatlng = latlng;
	this.distance = distance;
	this.address = "";

	this.SetLatLng = function(latlng) {
		this.glatlng = latlng;
	};

	this.SetDistance = function(distance) {
		this.distance = distance;
	};

	this.GetLatLng = function(){
		return this.glatlng;
	};

	this.GetDistance = function() {
		return this.distance;
	};

	this.SetAddress = function(add) {
		this.address = add;
	};

	this.GetAddress = function() {
		return this.address;
	};
}