Click here to see the SAS code.
Click here to see the example.

In this example, I use the relatively new "proc mapimport" to import
an "ESRI Shape File" into a data set that I can use as a sas/graph
map data set.  

   proc mapimport datafile='./twp1.shp' out=twp1; 
   id parcel_id; 
   run;

I use sas/graph proc gmap to draw the map, and I use gmap's "html="
option to specify a variable that contains html title= charttip/flyover-text,
and href= drilldown.

I think this kind of map could be *very* useful for cities and counties
to use for their zoning/planning.

Back to Samples Index