Group: Forum Members
Last Active: 12 Years Ago
Posts: 71,
Visits: 1
|
I am trying this example
NEsriMap map = new NEsriMap(); NEsriShapefile file = map.Add(@"C:\Maps\countries.shp"); file.NameColumn = "CNTRY_NAME"; file.TextColumn = "CNTRY_NAME"; map.Read(); map.ImportShapes(document, document.Bounds);
it plots the world map
i want to know how to show only a country like "canada"
i try to replace CNTRY_NAME by canada, but still shows the whole world map
|
Group: Forum Members
Last Active: 12 Years Ago
Posts: 71,
Visits: 1
|
Hopefully I found that I have to supply the shapefile for the specific country
|