File Manager
/**
* @namespace WPGMZA
* @module Rectangle
* @requires WPGMZA.Shape
* @pro-requires WPGMZA.ProShape
*/
jQuery(function($) {
var Parent = WPGMZA.Shape;
/**
* Base class for circles. <strong>Please <em>do not</em> call this constructor directly. Always use createInstance rather than instantiating this class directly.</strong> Using createInstance allows this class to be externally extensible.
* @class WPGMZA.Rectangle
* @constructor WPGMZA.Rectangle
* @memberof WPGMZA
* @augments WPGMZA.Feature
* @see WPGMZA.Rectangle.createInstance
*/
WPGMZA.Rectangle = function(options, engineRectangle)
{
var self = this;
WPGMZA.assertInstanceOf(this, "Rectangle");
this.name = "";
this.cornerA = new WPGMZA.LatLng();
this.cornerB = new WPGMZA.LatLng();
this.color = "#ff0000";
this.opacity = 0.5;
Parent.apply(this, arguments);
}
if(WPGMZA.isProVersion())
Parent = WPGMZA.ProShape;
WPGMZA.extend(WPGMZA.Rectangle, Parent);
Object.defineProperty(WPGMZA.Rectangle.prototype, "fillColor", {
enumerable: true,
"get": function()
{
if(!this.color || !this.color.length)
return "#ff0000";
return this.color;
},
"set" : function(a){
this.color = a;
}
});
Object.defineProperty(WPGMZA.Rectangle.prototype, "fillOpacity", {
enumerable: true,
"get": function()
{
if(!this.opacity && this.opacity != 0)
return 0.5;
return parseFloat(this.opacity);
},
"set": function(a){
this.opacity = a;
}
});
Object.defineProperty(WPGMZA.Rectangle.prototype, "strokeColor", {
enumerable: true,
"get": function()
{
if(!this.lineColor){
return "#000000";
}
return this.lineColor;
},
"set": function(a){
this.lineColor = a;
}
});
Object.defineProperty(WPGMZA.Rectangle.prototype, "strokeOpacity", {
enumerable: true,
"get": function()
{
if(!this.lineOpacity && this.lineOpacity != 0)
return 0;
return parseFloat(this.lineOpacity);
},
"set": function(a){
this.lineOpacity = a;
}
});
WPGMZA.Rectangle.createInstance = function(options, engineRectangle)
{
var constructor;
switch(WPGMZA.settings.engine)
{
case "open-layers":
if(WPGMZA.isProVersion()){
constructor = WPGMZA.OLProRectangle;
break;
}
constructor = WPGMZA.OLRectangle;
break;
default:
if(WPGMZA.isProVersion()){
constructor = WPGMZA.GoogleProRectangle;
break;
}
constructor = WPGMZA.GoogleRectangle;
break;
}
return new constructor(options, engineRectangle);
}
});
File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com