# Sample commands to display map of mainland USA -- try changing colors
# and numbers, then pressing the green arrow to see what happens.
worlds -126, 23, -65, 52

# Each state has a colorcode number.  Set color to use for each colorcode.
let c = ["yellow3", "orange3", "yellow", "gold", "pastelbrown", "yellowgreen"]

dataset "internal", "usa", ""
linestyle 0.01, "round", "round"
while Mapyrus.fetch.more
do
	# Display state in color of its colorcode with a black border.
	fetch
	clearpath
	addpath GEOMETRY
	color c[COLORCODE]
	fill
	color "black"
	stroke
done
