Revision 3392

View differences:

org.gvsig.raster.wms/trunk/org.gvsig.raster.wms/org.gvsig.raster.wms.app.wmsclient/src/main/java/org/gvsig/raster/wms/app/wmsclient/layer/FLyrWMS.java
1122 1122
		return newLayer;
1123 1123
	}
1124 1124
	
1125

  
1125
	@Override
1126
	public boolean isInside(Point2D p) {
1127
		// Don't call the data store isInside method, as the data store
1128
		// parameters change for every WMS tile that is drawn, so it does not
1129
		// return sensible results.
1130
		return rManager.getRasterUtils().isInside(p, getDataStore().getExtent());
1131
	}
1126 1132
}
org.gvsig.raster.wms/trunk/org.gvsig.raster.wms/org.gvsig.raster.wms.remoteclient/src/main/java/org/gvsig/remoteclient/wms/wms_1_3_0/request/WMSGetFeatureInfoRequest1_1_3.java
45 45
	public WMSGetFeatureInfoRequest1_1_3(WMSStatus status,
46 46
			WMSProtocolHandler protocolHandler, int x, int y) {
47 47
		super(status, protocolHandler, x, y);
48
		if (status!=null && status.getSrs()!=null) {
49
			if (!status.isXyAxisOrder() && !CrsAxisOrder.isXyAxisOrder(status.getSrs())) {
50
				this.x = y;
51
				this.y = x;
52
			}
53
		}
54 48
	}
55 49

  
56 50
	/*

Also available in: Unified diff