From e32da90f5af0bb53cd5e7b4ded9e20406978e7ed Mon Sep 17 00:00:00 2001 From: ahocevar Date: Mon, 29 Jul 2013 10:33:51 +0200 Subject: [PATCH] Fixing typo Thanks @bartvde for spotting this. --- src/ol/parser/ogc/gml_v3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/parser/ogc/gml_v3.js b/src/ol/parser/ogc/gml_v3.js index 6813fe3bbe..cf0fde9dc8 100644 --- a/src/ol/parser/ogc/gml_v3.js +++ b/src/ol/parser/ogc/gml_v3.js @@ -393,7 +393,7 @@ ol.parser.ogc.GML_v3 = function(opt_options) { 'upperCorner': function(bounds) { // only 2d for simple features profile var pos; - if (this.axisOrientation().substr(0, 2) === 'en') { + if (this.getAxisOrientation().substr(0, 2) === 'en') { pos = (bounds.right + ' ' + bounds.top); } else { pos = (bounds.top + ' ' + bounds.right);