OpenLayers.Tile

This is a class designed to designate a single tile, however it is explicitly designed to do relatively little.  Tiles store information about themselves -- such as the URL that they are related to, and their size - but do not add themselves to the layer div automatically, for example.  Create a new tile with the OpenLayers.Tile constructor, or a subclass.

TBD 3.0remove reference to url in above paragraph
Summary
OpenLayers.TileThis is a class designed to designate a single tile, however it is explicitly designed to do relatively little.
Properties
events{OpenLayers.Events} An events object that handles all events on the tile.
eventListeners{Object} If set as an option at construction, the eventListeners object will be registered with OpenLayers.Events.on.
bounds{OpenLayers.Bounds} null
Constructor
OpenLayers.TileConstructor for a new OpenLayers.Tile instance.
Functions
destroyNullify references to prevent circular references and memory leaks.

Properties

events

{OpenLayers.Events} An events object that handles all events on the tile.

Register a listener for a particular event with the following syntax

tile.events.register(type, obj, listener);

Supported event types

beforedrawTriggered before the tile is drawn.  Used to defer drawing to an animation queue.  To defer drawing, listeners need to return false, which will abort drawing.  The queue handler needs to call <draw>(true) to actually draw the tile.
loadstartTriggered when tile loading starts.
loadendTriggered when tile loading ends.
loaderrorTriggered before the loadend event (i.e. when the tile is still hidden) if the tile could not be loaded.
reloadTriggered when an already loading tile is reloaded.
unloadTriggered before a tile is unloaded.

eventListeners

{Object} If set as an option at construction, the eventListeners object will be registered with OpenLayers.Events.on.  Object structure must be a listeners object as shown in the example for the events.on method.

This options can be set in the ``tileOptions`` option from OpenLayers.Layer.Grid.  For example, to be notified of the ``loadend`` event of each tiles:

new OpenLayers.Layer.OSM('osm', 'http://tile.openstreetmap.org/${z}/${x}/${y}.png', {
    tileOptions: {
        eventListeners: {
            'loadend': function(evt) {
                // do something on loadend
            }
        }
    }
});

bounds

Constructor

OpenLayers.Tile

Constructor for a new OpenLayers.Tile instance.

Parameters

layer{OpenLayers.Layer} layer that the tile will go in.
position{OpenLayers.Pixel}
bounds{OpenLayers.Bounds}
url{String}
size{OpenLayers.Size}
options{Object}

Functions

destroy

destroy:function()

Nullify references to prevent circular references and memory leaks.

on: function(object)
Convenience method for registering listeners with a common scope.
Instances of this class represent bounding boxes.
Constructor for a new OpenLayers.Tile instance.
destroy:function()
Nullify references to prevent circular references and memory leaks.
This class represents a screen coordinate, in x and y coordinates
Contains convenience functions for string manipulation.
Instances of this class represent a width/height pair
Close