如果要扩展我强烈推荐的 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;