Project

General

Profile

1 3032 perry
OpenLayers 2.0 Release Notes
2
3
 * Deprecated Methods which were removed:
4
5
 For details, see r1228
6
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
31
32
 * MouseWheel
33
  * It is now possible to zoom in/out with the mouse wheel instead of clicks.
34
35
 * Spiral Gridding
36
  * Instead of loading from the top to bottom of the map, Openlayers will
37
    now start loading tiles from the center of the map.
38
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.
54
55
OpenLayers 1.0
56
 Initial release.