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