MapSuite Team,
If a GeoDataTable is populated with the features corresponding to an SqliteFeatureLayer the following code will get the BaseShape of the Feature.
Dictionary<string, object> TheFeatureRow = TheGeoDataTable.Rows[0];
byte[] TheGeometry = (byte[])TheFeatureRow["geometry"];
BaseShape TheBaseShape = MultilineShape.CreateShapeFromWellKnownData(TheGeometry);
If a GeoDataTable is populated with the features corresponding to a ShapeFileFeatureLayer how does one get the BaseShape of the Feature for any given Row?
Thanks,
Dennis