Add "url" option to ol.source.MapQuest

This commit is contained in:
Éric Lemoine
2015-01-25 21:46:45 +01:00
parent 9e7e5efd27
commit df2d71ef83
2 changed files with 12 additions and 2 deletions

View File

@@ -25,7 +25,8 @@ ol.source.MapQuest = function(opt_options) {
var layerConfig = ol.source.MapQuestConfig[options.layer];
var protocol = ol.IS_HTTPS ? 'https:' : 'http:';
var url = protocol + '//otile{1-4}-s.mqcdn.com/tiles/1.0.0/' +
var url = goog.isDef(options.url) ? options.url :
protocol + '//otile{1-4}-s.mqcdn.com/tiles/1.0.0/' +
options.layer + '/{z}/{x}/{y}.jpg';
goog.base(this, {