I am using jfree in a JSP project. The image maps are of particular interest to me. I have noticed that each point on the map is a poly, with a LOT of points.
example:
Code: Select all
coords="97,204,96,206,94,207,92,206,91,204,92,202,94,201,96,202,97,204,97,204" shape="poly"
Doesn't it make more sense to have simple type of shape representing a point on the image? Like a rectangle instead of this polygon-converging-to-circle-because-of-infinite-corners?
How could we override the default behaviour?[/code]