From d19ce18a31c0b7593305166f944c656c424e0e1d Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Fri, 13 Dec 2013 18:53:07 +0100 Subject: [PATCH] Fix return type of ol.Map#getView --- src/ol/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/map.js b/src/ol/map.js index 7caf96bcc0..722ddc5ef6 100644 --- a/src/ol/map.js +++ b/src/ol/map.js @@ -661,7 +661,7 @@ goog.exportProperty( /** * Get the view associated with this map. This can be a 2D or 3D view. A 2D * view manages properties such as center and resolution. - * @return {ol.View} View. + * @return {ol.View|undefined} View. * @todo stability experimental */ ol.Map.prototype.getView = function() {