When calling [L.map.remove](http://leafletjs.com/reference.html#map-remove) on a map instance in IE7, the browser throw an error `Object doesn't support this action` on [map/Map.js:319](https://github.com/Leaflet/Leaflet/blob/3d5dbe7dfc0579c37685460add162d1b95d6454c/src/map/Map.js#L319). Replacing `delete this._container._leaflet;` by `this._container._leaflet = undefined;` fixes the issue