The function to be called when request the data.
Syntax
$(function () {
// Set request event handler function
$(".selector").wijvirtuallayer({
request : function (paper, minZoom, maxZoom, lowerLeft, upperRight) {
}
});
});
request = function (
: RaphaelPaper,
: number,
: number,
: IPoint,
: IPoint
) { };
Parameters
- paper
- The Raphael paper to draw the items.
- minZoom
- The min zoom suits the current request slice.
- maxZoom
- The max zoom suits the current request slice.
- lowerLeft
- The coordinates of the lower left point of the current request slice, in geographic unit.
- upperRight
- The coordinates of the upper right point of the current request slice, in geographic unit.
See Also