Merged with upstream master
This commit is contained in:
@@ -219,6 +219,20 @@ Corresponding issues/pull requests:
|
||||
|
||||
* https://github.com/openlayers/openlayers/pull/101
|
||||
|
||||
## Google v3 Layer
|
||||
|
||||
This release fixes a problem with the clickable elements supplied by Google. `OpenLayers.Layer.Google.v3` is now compatible with the current frozen version of Google's API (3.7) and also with the current release and nightly versions (3.8 and 3.9), but be aware that Google may change these elements in their release and nightly versions at any time, and an interim fix OpenLayers release may be needed.
|
||||
|
||||
It's recommended that production servers always load the frozen version of Google's API, but it would help find potential problems if development pages used the latest nightly version.
|
||||
|
||||
See the class description in the API docs for `OpenLayers.Layer.Google.v3` for more details.
|
||||
|
||||
Good ideas on how to improve this unsatisfactory situation welcome!
|
||||
|
||||
Corresponding issues/pull requests:
|
||||
|
||||
* https://github.com/openlayers/openlayers/pull/472
|
||||
|
||||
## OSM and Bing Layers
|
||||
|
||||
`Layer.OSM` is now defined in its own script file, namely `OpenLayers/Layer/OSM.js`. So people using `Layer.OSM` should now include `OpenLayers/Layer/OSM.js`, as opposed to `OpenLayers/Layer/XYZ.js`, in their OpenLayers builds.
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user