Produce the choropleth map. The ID statement
specifies the variable that is in both the map data set and the response data
set that defines map areas. COUTLINE= specifies the color for the map area
outlines.
proc gmap map=maps.us data=reflib.sites;
id state;
choro sites / coutline=gray;
run;
quit;