Revision 3453

View differences:

trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/core/FMultiPoint2D.java
106 106
	 * @see com.iver.cit.gvsig.fmap.core.IGeometry#toJTSGeometry()
107 107
	 */
108 108
	public Geometry toJTSGeometry() {
109
        // TODO.
109 110
		return null;
110 111
	}
111 112

  
......
113 114
	 * @see com.iver.cit.gvsig.fmap.core.IGeometry#createLabels(int, boolean)
114 115
	 */
115 116
	public FLabel[] createLabels(int position, boolean duplicates) {
116
		return null;
117
        FLabel[] aux = new FLabel[getNumPoints()];
118
        for (int i=0; i < getNumPoints(); i++)
119
        {
120
            aux[i] = FLabel.createFLabel(new FPoint2D(x[i],y[i]));
121
        }
122
        
123
		return aux;
117 124
	}
118 125

  
119 126
	/* (non-Javadoc)

Also available in: Unified diff