| 7 | | * OpenLayers.Map |
|---|
| 8 | | * removed: getFullExtent() -- use getMaxExtent() instead |
|---|
| 9 | | * removed: zoomToFullExtent() -- use zoomToMaxExtent() instead |
|---|
| 10 | | * OpenLayers.Layer.Grid |
|---|
| 11 | | * removed: setTileSize() -- user should instead pass a 'tileSize' property |
|---|
| 12 | | as one of the options when initializing the Grid Layer. ex: |
|---|
| 13 | | |
|---|
| 14 | | var url = "http://octo.metacarta.com/cgi-bin/mapserv"; |
|---|
| 15 | | var options = {tileSize: new OpenLayers.Size(500,50)}; |
|---|
| 16 | | var map = new OpenLayers.Map('map', options); |
|---|
| 17 | | layer = new OpenLayers.Layer.WMS(name, url, params); |
|---|
| 18 | | |
|---|
| 19 | | * OpenLayers.Layer.HTTPRequest |
|---|
| 20 | | * removed: changeParams() -- use mergeNewParams() instead |
|---|
| 21 | | * OpenLayers.Pixel |
|---|
| 22 | | * removed: copyOf() -- use clone() instead |
|---|
| 23 | | * OpenLayers.Size |
|---|
| 24 | | * removed: copyOf() -- use clone() instead |
|---|
| 25 | | * OpenLayers.LonLat |
|---|
| 26 | | * removed: copyOf() -- use clone() instead |
|---|
| 27 | | * OpenLayers.Bounds |
|---|
| 28 | | * removed: copyOf() -- use clone() instead |
|---|
| 29 | | * Array |
|---|
| 30 | | * removed: copyOf() -- use clone() instead |
|---|
| | 16 | OpenLayers 2.2: |
|---|
| | 17 | r1866 |
|---|
| | 18 | Released 11/15/06 |
|---|
| | 19 | http://trac.openlayers.org/wiki/Release/2.2/Notes |
|---|
| 39 | | * Tile Re-Use |
|---|
| 40 | | * In order to lower memory constraints and reduce element creation times, |
|---|
| 41 | | OpenLayers now creates a single set of images/tiles and reuses them as |
|---|
| 42 | | you scroll around the map. |
|---|
| 43 | | |
|---|
| 44 | | * New Layer Support |
|---|
| 45 | | * Google |
|---|
| 46 | | * Virtual Earth |
|---|
| 47 | | * GeoRSS (RSS 1.0 and 2.0 in FF, IE, RSS 2.0 in Safari) |
|---|
| 48 | | * KaMap |
|---|
| 49 | | * Untiled WMS |
|---|
| 50 | | |
|---|
| 51 | | * Scale Based Methods |
|---|
| 52 | | * It is now possible to set zooms based on the concept of scale. See |
|---|
| 53 | | documentation in the options for the Map constructor. |
|---|
| | 26 | OpenLayers 2.0: |
|---|
| | 27 | r1368 |
|---|
| | 28 | Released 08/25/06 |
|---|
| | 29 | http://trac.openlayers.org/wiki/Release/2.0/Notes |
|---|