Hi,
I am new to ThinkGeo development so maybe this question is answered somewhere though I wasn't able to find an answer.
I have a few MapInfo .TAB files (with correposning DAT, ID and MAP files).
I am trying to display them but so far are not seeing any results.
I did a server side layer:
TabFeatureSource.BuildIndexFile(MapPath("~/app_data/MyTabFile.TAB"));
TabFeatureLayer tabFeatureLayer = new TabFeatureLayer(MapPath("~/app_data/MyTabFile.TAB"));
...
erverLayerOverlay tabOverlay = new ServerLayerOverlay("TabServer");
tabOverlay.Layers.Add(tabFeatureLayer);
SilverlightMapConnector1.ServerLayerOverlays.Add(tabOverlay);
I Then on the client:
ServerLayerOverlay tabOverlay = new ServerLayerOverlay("TabServer", "SilverlightMapConnector1");
Map1.Overlays.Add(tabOverlay);
But I see nothing.
When I am trying to use such layer on the client side I don't even find the TabFeatureLayer.
I've seen an example but it is only for Desktop clients and not silverlight.
Is there a way to do it on the client? Is there additional code I need to do in the server to properly display TAB data?
Thanks,
Tomer