Produce the choropleth map. The NOLEGEND option suppresses the legend. The ANNOTATE= option specifies the data set to annotate the map.


proc gmap map=maps.belarus data=maps.belarus;
   id id;
   choro id / nolegend annotate=labelout;
run;
quit;