(xmin,ymin)= (0,0) and (xmax,ymax)=(width,height)
Or if the bounding box is -180,-90,180,90 then (xmin,ymin)=(-180,-90) and (xmax,ymax)=(180,90) ???
-----Message d'origine-----
De : Martin Desruisseaux [mailto:[EMAIL PROTECTED]]
Envoyé : jeudi 15 septembre 2005 10:43
À : Virginie BERRE
Cc : [email protected]
Objet : Re: [Geotools-gt2-users] Problem with RenderedMapScale
Virginie BERRE a écrit :
> I've understand what you told me but I don't know how to initialise the
> Envelope. Could you help be a bit more and tell me what to write in the
> brackets: Envelope envelope = new Envelope( *???* );
new GeneralEvenlope(new double[] {xmin, ymin},
new double[] {xmax, ymax});
Martin.
