如果你想擴展OpenLayers.Feature.Vector類,我強烈建議,你將不得不使用OpenLayers.Class對象:
SpecialRegion = OpenLayers.Class(OpenLayers.Feature.Vector, {
customAttribute: 'value',
/**
* OpenLayers Constructor
*/
initialize: function(bounds, options) {
// Call the super constructor, you will have to define the variables geometry, attributes and style
OpenLayers.Feature.Vector.prototype.initialize.apply(this, {geometry, attributes, style});
this.customAttribute = 'new value';
},
// Each instance will share this method. It's clean and efficient
customMethod: function(param) {
...
}
});
實例化
var myVector = new SpecialRegion(bounds, options);
myVector.customMethod(param);
var val = myVector.customAttribute;
如果您只想爲單個實例定義特殊的方法和/或屬性,而不必定義它自己的類:
注意:如果您執行此操作,您的應用程序可能會變得非常混亂太常見了,我會建議上面的解決方案。
function customMethod2 = function(param) {
...
};
function SpecialRegion(bounds, options) {
// Call the constructor, you will have to define the variables geometry, attributes and style
var vector = new OpenLayers.Feature.Vector(geometry, attributes, style);
vector.customAttribute = 'new value';
// Each instance created with SpecialRegion will have their own copy of this method, the code is cleaner but it's memory inefficient
vector.customMethod = function(param) {
...
};
// Each instance share the same copy of this method (defined on top), the code is harder to read/maintain but it's more memory efficient
vector.customMethod2 = customMethod2;
return vector;
};
實例化
var myVector = SpecialRegion(bounds, options);
// Don't use the keyword 'new' here, SpecialRegion is a function, not a proper class.
myVector.customMethod(param);
myVector.customMethod2(param);
var val = myVector.customAttribute;