var Feature = Class.create({
	initialize: function(poly, distance, name, mapURL, infoURL) {
		this.poly = poly;
		this.distance = distance;
		this.name = name;
		this.mapURL = mapURL;
		this.infoURL = infoURL;
	},

	type: 'Feature'
});
