From 51b62fb18849c076b5daa941350164c0a1f7f737 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Mon, 30 Nov 2015 12:34:02 +0100 Subject: [PATCH] Improve ol.source.WMTS.optionsFromCapabilities jsdoc layout --- src/ol/source/wmtssource.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/ol/source/wmtssource.js b/src/ol/source/wmtssource.js index 26a8628022..1cbd44da1c 100644 --- a/src/ol/source/wmtssource.js +++ b/src/ol/source/wmtssource.js @@ -305,19 +305,19 @@ ol.source.WMTS.prototype.updateDimensions = function(dimensions) { * the layer will apply if not provided. * * Required config properties: - * layer - {String} The layer identifier. + * - layer - {string} The layer identifier. * * Optional config properties: - * matrixSet - {String} The matrix set identifier, required if there is - * more than one matrix set in the layer capabilities. - * projection - {String} The desired CRS when no matrixSet is specified. - * eg: "EPSG:3857". If the desired projection is not available, - * an error is thrown. - * requestEncoding - {String} url encoding format for the layer. Default is the - * first tile url format found in the GetCapabilities response. - * style - {String} The name of the style - * format - {String} Image format for the layer. Default is the first - * format returned in the GetCapabilities response. + * - matrixSet - {string} The matrix set identifier, required if there is + * more than one matrix set in the layer capabilities. + * - projection - {string} The desired CRS when no matrixSet is specified. + * eg: "EPSG:3857". If the desired projection is not available, + * an error is thrown. + * - requestEncoding - {string} url encoding format for the layer. Default is + * the first tile url format found in the GetCapabilities response. + * - style - {string} The name of the style + * - format - {string} Image format for the layer. Default is the first + * format returned in the GetCapabilities response. * @return {olx.source.WMTSOptions} WMTS source options object. * @api */