Source: temp/jsdocinputdirs/cercalia.control.scaleline.js

/**
 * @classdesc
 * Rotate ScaleLine. Linear scale.
 * @constructor 
 * @extends {ol.control.Control}
 */
cercalia.Control.ScaleLine = function(options){
	ol.control.ScaleLine.call(this, options);
	
	/**
	 * @private
	 * @type {string}
	 */
	this.name_ = cercalia.MapControls.ScaleLine;
	
	/**
	 * Class name
	 * @private
	 * @type {string}
	 */
	this.CLASS_NAME_ = "cercalia.Control.ScaleLine";
	
	/**
	 * @private
	 * @type {string}
	 */
	this.element_ = this.element;
	
	/**
	 * Class name
	 * @private
	 * @type {string}
	 */
	this.CLASS_NAME_ = "cercalia.Control.ScaleLine";
};
ol.inherits(cercalia.Control.ScaleLine, ol.control.ScaleLine);