Merge pull request #2639 from fredj/osmxml-options

Fix ol.source.OSMXML options
This commit is contained in:
Frédéric Junod
2014-08-27 15:11:03 +02:00
2 changed files with 2 additions and 10 deletions

View File

@@ -3931,7 +3931,6 @@ olx.source.OSMOptions.prototype.url;
/**
* @typedef {{attributions: (Array.<ol.Attribution>|undefined),
* defaultStyle: (Array.<ol.style.Style>|undefined),
* doc: (Document|undefined),
* logo: (string|olx.LogoOptions|undefined),
* node: (Node|undefined),
@@ -3953,14 +3952,6 @@ olx.source.OSMXMLOptions;
olx.source.OSMXMLOptions.prototype.attributions;
/**
* Default style.
* @type {Array.<ol.style.Style>|undefined}
* @api
*/
olx.source.OSMXMLOptions.prototype.defaultStyle;
/**
* Document.
* @type {Document|undefined}

View File

@@ -28,7 +28,8 @@ ol.source.OSMXML = function(opt_options) {
projection: options.projection,
reprojectTo: options.reprojectTo,
text: options.text,
url: options.url
url: options.url,
urls: options.urls
});
};