I have this map with the Brazilian states: data estados;
set maps.brazil;
run;
proc sort data = work.estados nodupkey; by ID; run;
data estados;
set work.estados;
xsys='2'; ysys='2'; hsys='3'; when='a';
function='pie'; style='psolid'; rotate=360; size=1; color='red';
run;
title1 ls=1.5 "Estados Brasileiros";
pattern1 v=s c='white';
proc gmap map=maps.brazil anno=work.estados;
id id;
choro segment / levels=1 nolegend coutline=gray88;
run; the "anno=work.estados" mark some states on the map. I have a dataset with coordinates (latitude and longitude), someone know how i show a marker for each coordinate?
... View more