The GraphicsGeoCanvas example (wiki.thinkgeo.com/wiki/Map_S...us_Samples) has been very useful, enabling us to export maps in vector format for insertion into Word, etc.
However, the new version 7 seems somehow to break this functionality. Below are two images, one showing the map layers as they are displayed on screen and the other showing the resulting EMF file. The red frame is the critical part here; it indicates the intended limits of the final image.
Evidently, not all lines and polygons are clipped to the given frame. The clipping are done using these statements:
GraphicsGeoCanvas canvas;
RectangleShape frame;
...
canvas.EnableCliping = true;
canvas.ClipingArea = frame;
In version 7 these statements are marked as "deprecated", to be replaced by:
GraphicsGeoCanvas canvas;
RectangleShape frame;
...
canvas.ClippingArea = frame;
However, neither of these seems to work as expected.
Is this a bug in the new version, or do I just need to adjust my code a little?
P.S. My full code for generating metafiles can by found in this old post: thinkgeo.com/forums/MapSuite/tabid/143/aft/10844/Default.aspx