git-svn-id: http://svn.openlayers.org/trunk/openlayers@100 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
17 lines
428 B
JavaScript
17 lines
428 B
JavaScript
OpenLayers.Layer.Marker = Class.create();
|
|
OpenLayers.Layer.Marker.prototype =
|
|
Object.extend( new OpenLayers.Layer(), {
|
|
|
|
// markers: store internal marker list
|
|
markers:null,
|
|
|
|
initialize: function(name) {
|
|
OpenLayers.Layer.prototype.initialize.apply(this, arguments);
|
|
},
|
|
|
|
// Implement this. It may not need to do anything usually.
|
|
moveTo:function(bounds,zoomChanged) {
|
|
|
|
}
|
|
});
|