Changeset 502
- Timestamp:
- 06/02/06 12:37:55 (3 years ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Feature.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Feature.js
r441 r502 45 45 */ 46 46 destroy: function() { 47 this.events = null; 47 48 this.layer = null; 49 this.id = null; 50 this.lonlat = null; 51 this.data = null; 52 if (this.marker != null) { 53 this.marker.destroy(); 54 this.marker = null, 55 } 56 if (this.popup != null) { 57 this.popup.destroy(); 58 this.popup = null; 59 } 48 60 }, 49 61
