Rename useTileZXY to useTile

This commit is contained in:
Tom Payne
2013-03-25 11:45:20 +01:00
parent f7cc8fa738
commit 9906c518a7
3 changed files with 3 additions and 3 deletions

View File

@@ -111,7 +111,7 @@ ol.source.ImageTileSource.prototype.getTile =
/**
* @inheritDoc
*/
ol.source.ImageTileSource.prototype.useTileZXY = function(z, x, y) {
ol.source.ImageTileSource.prototype.useTile = function(z, x, y) {
var tileCoordKey = ol.TileCoord.getKeyZXY(z, x, y);
if (this.tileCache_.containsKey(tileCoordKey)) {
this.tileCache_.get(tileCoordKey);