OpenLayers. Strategy.BBOX

A simple strategy that reads new features when the viewport invalidates some bounds.

Inherits from

Summary
OpenLayers. Strategy.BBOXA simple strategy that reads new features when the viewport invalidates some bounds.
Properties
bounds{OpenLayers.Bounds} The current data bounds.
ratio{Float} The ratio of the data bounds to the viewport bounds (in each dimension).
response{OpenLayers.Protocol.Response} The protocol response object returned by the layer protocol.
Constructor
OpenLayers. Strategy.BBOXCreate a new BBOX strategy.
Functions
activateSet up strategy with regard to reading new batches of remote data.
deactivateTear down strategy with regard to reading new batches of remote data.
updateCallback function called on “moveend” or “refresh” layer events.
invalidBounds
calculateBounds
triggerRead{OpenLayers.Protocol.Response} The protocol response object returned by the layer protocol.
createFilterReturns {OpenLayers.Filter} The filter object.
mergeGiven a list of features, determine which ones to add to the layer.

Properties

bounds

{OpenLayers.Bounds} The current data bounds.

ratio

{Float} The ratio of the data bounds to the viewport bounds (in each dimension).

response

{OpenLayers.Protocol.Response} The protocol response object returned by the layer protocol.

Constructor

OpenLayers. Strategy.BBOX

Create a new BBOX strategy.

Parameters

options{Object} Optional object whose properties will be set on the instance.

Functions

activate

activate: function()

Set up strategy with regard to reading new batches of remote data.

Returns

{Boolean} The strategy was successfully activated.

deactivate

deactivate: function()

Tear down strategy with regard to reading new batches of remote data.

Returns

{Boolean} The strategy was successfully deactivated.

update

update: function(options)

Callback function called on “moveend” or “refresh” layer events.

Parameters

options{Object} An object with a property named “force”, this property references a boolean value indicating if new data must be incondtionally read.

invalidBounds

invalidBounds: function(mapBounds)

Parameters

mapBounds{OpenLayers.Bounds} the current map extent, will be retrieved from the map object if not provided

Returns

{Boolean}

calculateBounds

calculateBounds: function(mapBounds)

Parameters

mapBounds{OpenLayers.Bounds} the current map extent, will be retrieved from the map object if not provided

triggerRead

triggerRead: function()

Returns

{OpenLayers.Protocol.Response} The protocol response object returned by the layer protocol.

createFilter

createFilter: function()

Returns {OpenLayers.Filter} The filter object.

merge

merge: function(resp)

Given a list of features, determine which ones to add to the layer.

Parameters

resp{OpenLayers.Protocol.Response} The response object passed by the protocol.
Instances of this class represent bounding boxes.
Protocols return Response objects to their users.
activate: function()
Set up strategy with regard to reading new batches of remote data.
deactivate: function()
Tear down strategy with regard to reading new batches of remote data.
update: function(options)
Callback function called on “moveend” or “refresh” layer events.
invalidBounds: function(mapBounds)
calculateBounds: function(mapBounds)
triggerRead: function()
{OpenLayers.Protocol.Response} The protocol response object returned by the layer protocol.
createFilter: function()
Returns {OpenLayers.Filter} The filter object.
This class represents an OGC Filter.
merge: function(resp)
Given a list of features, determine which ones to add to the layer.
Abstract vector layer strategy class.
Close