# MapServer map file definitions and base properties of NMCOSS map. # For MapServer mapfile documentations, see http://mapserver.org/mapfile/index.html # MAP object required, NAME optional. MAP NAME NMCOSS # Size, imagecolor and imagetype determine properties of base map image # to be inserted into the "map" div on the HTML page. SIZE 800 800 IMAGECOLOR 255 255 255 IMAGETYPE PNG # SHAPEPATH points to shapefile directory. # EXTENT represents geographic extent of map to be drawn. SHAPEPATH "c:/ms4w/apps/nmcoss/data/" EXTENT -111.503568 29.355569 -99.102455 39.042196 # FONTSET points to a file which lists locations of MS True Type fonts. # In this case, only fonts included in file are ARIAL fonts. # Paths to fonts are specified in the 'arialfonts.txt' file itself, # and may need to be edited depending on a workstation's configuration. FONTSET './arialfonts.txt' # WEB object required to specify where map images should be # stored prior to serving to browser. WEB IMAGEPATH "c:/ms4w/tmp/ms_tmp/" IMAGEURL "/ms_tmp/" END # END of web object # Response terms are drawn as squares on the map. # symbol object initialization and base attributes set here. # Size, border and color properties are set dynamically # within 'nmcoss.php.' SYMBOL NAME 'square' TYPE VECTOR FILLED TRUE POINTS 0 1 0 0 1 0 1 1 0 1 END # END of point definition END #END of square symbol object END # END of map object