We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8df42d2 commit 0499f95Copy full SHA for 0499f95
src/Source/WMSSource.js
@@ -106,8 +106,8 @@ class WMSSource extends Source {
106
// 4326 (lat/long) axis order depends on the WMS version used
107
if (this.crs == 'EPSG:4326') {
108
// EPSG 4326 x = lat, long = y
109
- // version 1.1.0 long/lat while version 1.3.0 mandates xy (so lat,long)
110
- this.axisOrder = (this.version === '1.1.0' ? 'wsen' : 'swne');
+ // version 1.X.X long/lat while version 1.3.0 mandates xy (so lat,long)
+ this.axisOrder = (this.version === '1.3.0' ? 'swne' : 'wsen');
111
} else {
112
// xy,xy order
113
this.axisOrder = 'wsen';
0 commit comments