From 792ffb7875ee231adbc18cbd2d4211e8d1e3319f Mon Sep 17 00:00:00 2001 From: Andy Gup Date: Mon, 13 Oct 2014 13:08:50 -0600 Subject: [PATCH] log img url to console --- lib/tiles/TilesCore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tiles/TilesCore.js b/lib/tiles/TilesCore.js index 0c2f860..5a7d4da 100644 --- a/lib/tiles/TilesCore.js +++ b/lib/tiles/TilesCore.js @@ -16,7 +16,7 @@ O.esri.Tiles.TilesCore = function(){ */ this._getTiles = function(image,imageType,url,tileid,store,query){ store.retrieve(url, function(success, offlineTile) - { console.log("TILE RETURN " + success + ", " + offlineTile) + { console.log("TILE RETURN " + success + ", " + offlineTile.url) /* when the .getTileUrl() callback is triggered we replace the temporary URL originally returned by the data:image url */ // search for the img with src="void:"+level+"-"+row+"-"+col and replace with actual url image = query("img[src="+tileid+"]")[0];