(function(moduleName){

//-------------
// MAPSTRACTION
//-------------

	function addAPI(element, api) {
	}
	
	function setCenterAndZoom(point, zoom) {
	}
	
	function getBounds() {
	}
	
	function addMarker(marker, old) {
    }
    
    function addOverlay(url, autoCenterAndZoom) {
    }
    
    // Register
	mxn.registerProvider(moduleName, {
		addAPI              : addAPI,
		setCenterAndZoom    : setCenterAndZoom,
		getBounds           : getBounds,
		addMarker           : addMarker,
		addOverlay          : addOverlay
	});

})('mapstraction.yahoo');