Produce the choropleth map. NOLEGEND suppresses the legend. ANNOTATE= specifies the data set to annotate the map.
proc gmap data=maps.us map=maps.us;
   id state;
   choro state / nolegend
                 annotate=reflib.center;
run;
quit;