Merge pull request #432 from fredj/uri-url

Rename TileJSONOptions.uri to TileJSONOptions.url
This commit is contained in:
Frédéric Junod
2013-03-25 03:46:26 -07:00
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ ol.source.TileJSON = function(tileJsonOptions) {
* @type {!goog.async.Deferred}
*/
this.deferred_ =
goog.net.jsloader.load(tileJsonOptions.uri, {cleanupWhenDone: true});
goog.net.jsloader.load(tileJsonOptions.url, {cleanupWhenDone: true});
this.deferred_.addCallback(this.handleTileJSONResponse, this);
};