From 4c1d2f8c8653089f1f4784dc73f01422dabf9bed Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Tue, 7 Oct 2014 10:41:30 +0200 Subject: [PATCH] Remove reprojectTo option from olx.source.OSMXMLOptions Leftover from #1640 --- externs/olx.js | 9 --------- src/ol/source/osmxmlsource.js | 1 - 2 files changed, 10 deletions(-) diff --git a/externs/olx.js b/externs/olx.js index 97751c1f56..a08a0621d7 100644 --- a/externs/olx.js +++ b/externs/olx.js @@ -4084,7 +4084,6 @@ olx.source.OSMOptions.prototype.url; * logo: (string|olx.LogoOptions|undefined), * node: (Node|undefined), * projection: ol.proj.ProjectionLike, - * reprojectTo: ol.proj.ProjectionLike, * text: (string|undefined), * url: (string|undefined), * urls: (Array.|undefined)}} @@ -4133,14 +4132,6 @@ olx.source.OSMXMLOptions.prototype.node; olx.source.OSMXMLOptions.prototype.projection; -/** - * Re-project to. - * @type {ol.proj.ProjectionLike} - * @api - */ -olx.source.OSMXMLOptions.prototype.reprojectTo; - - /** * Text. * @type {string|undefined} diff --git a/src/ol/source/osmxmlsource.js b/src/ol/source/osmxmlsource.js index 14107f006e..d1ba44f49b 100644 --- a/src/ol/source/osmxmlsource.js +++ b/src/ol/source/osmxmlsource.js @@ -26,7 +26,6 @@ ol.source.OSMXML = function(opt_options) { logo: options.logo, node: options.node, projection: options.projection, - reprojectTo: options.reprojectTo, text: options.text, url: options.url, urls: options.urls