Changeset 6985
- Timestamp:
- 04/21/08 04:03:00 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/topp/almanac/lib/OpenLayers/Layer/Vector.js
r6849 r6985 329 329 } 330 330 331 this.features.push(feature);332 333 //give feature reference to its layer334 feature.layer = this;335 336 331 if (!feature.style && this.style) { 337 332 feature.style = OpenLayers.Util.extend({}, this.style); … … 344 339 this.preFeatureInsert(feature); 345 340 } 341 342 this.features.push(feature); 343 344 //give feature reference to its layer 345 feature.layer = this; 346 346 347 347 if (this.drawn) {
