Source: maps/limbs/layout/DefaultLayoutStrategy.js


/**
 * @class
 * A layout strategy that simply positions elements in their default position.
 * There is no logic to avoid overlapping elements or to sort in z-order.
 * You do not need to call the start and stop methods on this LayoutStrategy.
 */
lucid.maps.limbs.layout.DefaultLayoutStrategy = function()
{
	lucid.maps.limbs.layout.LayoutStrategy.apply( this, [ {} ] );
	
	
	this.layout = function( div, position, mapDetails )
	{
		div.css( "left", position.x );
		div.css( "top", position.y );
		div.css( "zIndex", this.getMinZIndex() );
	};
	
};