I meaning I selects one point on map. I want to get feature and shape from any layer in map.
example.
the map has 2 layer. they're home and road.
when I select home.the map can be get features from home and road nearest home.(likes buffer)
If it can please sample for me.
If you not understand me, please tell me.
Regards,
sumeth
this my concept. I trying to do it.
ShapeFileFeatureSource sffs = new ShapeFileFeatureSource();
TabFeatureSource tfs = new TabFeatureSource();
MsSql2008FeatureSource mssql = new MsSql2008FeatureSource();
OracleFeatureSource orc = new OracleFeatureSource();
MultipleFeatureSource mfs = new MultipleFeatureSource();
mfs.FeatureSources.Add(sffs);
mfs.FeatureSources.Add(tfs);
mfs.FeatureSources.Add(mssql);
mfs.FeatureSources.Add(orc);
Collection<Feature> featureCollection = mfs.SpatialQuery(new PointShape(lat, lon), QueryType.Contains, ReturningColumnsType.AllColumns);