The file that will hold the HTML code for the generated client-side image map that can be used in conjunction with the produced GIF to produce a clickable image. If not specified, no image map is produced.
After the translation completes, the file will contain the HTML code for an image map corresponding to the created image. The image map will contain entries for point, line, and polygon features that had a gif_href attribute. Polygons will appear only if they had an area greater than the Image Map Minimum Area, and lines will appear only if they had a length greater than the Image Map Minimum Line Length. Points and lines are buffered by a specified number of pixels to form polygons within the image map, but not within the actual image.
An example image map would look like this:
<MAP NAME="MAPPER">
<AREA HREF="javascript:alert('Trapline\nTRAPLINENO: 2339')" ALT="Trapline - 2339" SHAPE="POLY" COORDS="387,291,386,291,385,291,384,290,383,290,379,288,379,287,371,286,370,286,370,287,369,287,369,286,366,286,365,285,364,285,364,284,363,284,362,283,362,284,362,299,363,303,367,303,367,307,380,307,380,315,388,315,388,319,397,319,397,323,439,322,437,272,412,273,413,288,412,288,411,288,411,289,410,288,409,289,408,289,407,289,406,289,405,289,405,288,404,288,402,287,401,287,401,286,400,286,400,287,397,288,396,288,395,288,395,289,394,289,394,290,393,290,393,289,392,289,388,291">
<AREA HREF="javascript:alert('Significant Site\nSITE: PRINCE OF WALES ARMOURIES Edmonton \nHRV: Provincial Historic Resource')" ALT="Significant Site" SHAPE="POLY" COORDS="169,271,169,279,177,279,177,270">
</MAP>
A web page that included this HTML would also include the generated GIF with a line like this:
<IMG SRC="results20k.gif" ALT="[Query Results]" USEMAP="#MAPPER" BORDER=0 >
The points, lines, and polygons are arranged in the image map such that all lines lie on top of all polygons, and all points lie on top of all lines. This prevents points being obscured by lines or polygons, and prevents lines from being obscured by polygons.