Merged with upstream master

This commit is contained in:
Gregers Gram Rygg
2012-05-30 15:31:37 +02:00
47 changed files with 405 additions and 211 deletions

View File

@@ -14,4 +14,24 @@ Removed rounding of zoom level for maps with fractionalZoom == true. So users wi
Corresponding issues/pull requests:
* https://github.com/openlayers/openlayers/pull/483
* https://github.com/openlayers/openlayers/pull/483
# Behavior Changes from Past Releases
## window.$ is no longer an alias for OpenLayers.Util.getElement
We do no longer create a global variable '$' when such a symbol isn't already
defined. Previous versions of OpenLayers would define '$' to be an alias for
OpenLayers.Util.getElement. If your application requires window.$ to be defined
in such a way you can either
* include deprecated.js in your custom build or as additional ressource in your
HTML-file
* or you do the aliasing in your application code yourself:
window.$ = OpenLayers.Util.getElement;
Corresponding issue/pull requests:
* https://github.com/openlayers/openlayers/pull/423