The callback function to get the url of the specific tile.
Syntax
var instance; // Type: wijmo.maps.IMultiScaleTileSource;
var value; // Type: string
// Parameters
var zoom; // Type: number
var x; // Type: number
var y; // Type: number
value = instance.getUrl(zoom, x, y);
function getUrl(
: number,
: number,
: number
) : string;
Parameters
- zoom
- The current zoom level.
- x
- The column index of the tile, in 0 base. The amount of columns is 2^zoom.
- y
- The row index of the tile, in 0 base. The amount of rows is 2^zoom.
See Also