Revision 885 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/operations/strategies/DefaultStrategy.java

View differences:

DefaultStrategy.java
8 8
import java.util.BitSet;
9 9

  
10 10
import org.apache.log4j.Logger;
11
import org.cresques.cts.ICoordTrans;
11 12

  
12 13
import com.hardcode.driverManager.DriverLoadException;
13 14
import com.iver.cit.gvsig.fmap.DriverException;
......
112 113
		throws DriverException {
113 114
		try{
114 115
		VectorialAdapter adapter = ((SingleLayer) capa).getSource();
116
		ICoordTrans ct = getCapa().getCoordTrans();
115 117
		logger.debug("adapter.start()");
116 118
		adapter.start();
117 119

  
......
133 135
			if (geom == null) {
134 136
				continue;
135 137
			}
138
        	if (ct != null)
139
        	{
140
        		geom.reProject(ct);
141
        	}
136 142

  
137 143
			VectorialLegend l = (VectorialLegend) ((ClassifiableVectorial) capa).getLegend();
138 144

  

Also available in: Unified diff