Merge pull request #148 from probins/noqsf
Remove QueryStringFilter requires from Protocol/HTTP
This commit is contained in:
@@ -9,8 +9,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO: remove this dependency in 3.0
|
* if application uses the query string, for example, for BBOX parameters,
|
||||||
* @requires OpenLayers/Format/QueryStringFilter.js
|
* OpenLayers/Format/QueryStringFilter.js should be included in the build config file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -9,6 +9,11 @@
|
|||||||
* @requires OpenLayers/Format/GeoJSON.js
|
* @requires OpenLayers/Format/GeoJSON.js
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* if application uses the query string, for example, for BBOX parameters,
|
||||||
|
* OpenLayers/Format/QueryStringFilter.js should be included in the build config file
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class: OpenLayers.Protocol.Script
|
* Class: OpenLayers.Protocol.Script
|
||||||
* A basic Script protocol for vector layers. Create a new instance with the
|
* A basic Script protocol for vector layers. Create a new instance with the
|
||||||
|
|||||||
@@ -50,6 +50,10 @@ The base `OpenLayers.Geometry` class no longer depends on `OpenLayers.Format.WKT
|
|||||||
|
|
||||||
Without the WKT format included (by default), the `OpenLayers.Geometry::toString` method now returns "[object Object]." Previously, it returned the Well-Known Text representation of the geometry. To maintain the previous behavior, include the OpenLayers/Format/WKT.js file in your build.
|
Without the WKT format included (by default), the `OpenLayers.Geometry::toString` method now returns "[object Object]." Previously, it returned the Well-Known Text representation of the geometry. To maintain the previous behavior, include the OpenLayers/Format/WKT.js file in your build.
|
||||||
|
|
||||||
|
## QueryStringFilter
|
||||||
|
|
||||||
|
`OpenLayers.Protocol.HTTP` no longer requires `OpenLayers.Format.QueryStringFilter`. It you need this, make sure it is included in your build config file.
|
||||||
|
|
||||||
## Deprecated Components
|
## Deprecated Components
|
||||||
|
|
||||||
A number of properties, methods, and constructors have been marked as deprecated for multiple releases in the 2.x series. For the 2.12 release this deprecated functionality has been moved to a separate deprecated.js file. If you use any of the constructors or methods below, you will have to explicitly include the deprecated.js file in your build (or add it in a separate `<script>` tag after OpenLayers.js).
|
A number of properties, methods, and constructors have been marked as deprecated for multiple releases in the 2.x series. For the 2.12 release this deprecated functionality has been moved to a separate deprecated.js file. If you use any of the constructors or methods below, you will have to explicitly include the deprecated.js file in your build (or add it in a separate `<script>` tag after OpenLayers.js).
|
||||||
|
|||||||
Reference in New Issue
Block a user