/*
	CycleMap - a map to show cycling GPX files for saltlakecycling.com/where2ride.com

0.1  - initial release
			 shows legend control in map

*/

function CycleMap() {

function CycleMap() {
	BpMap.apply(this,arguments);

	this.addControl(new CycleMapLegendControl());
	this.addControl(new GLargeMapControl());
	this.addControl(new GMapTypeControl());
	this.addControl(new GScaleControl());
}

for(var prop in BpMap.prototype)
	CycleMap.prototype[prop] = BpMap.prototype[prop];

window.CycleMap = CycleMap;	
}
CycleMap();
