0

ユーザーがコンボボックスでレイヤー名を選択するカスタムレイヤーに、ポイント、ライン、またはポリゴンとしてフィーチャタイプを追加する必要があります。現時点では、すべての機能が最後に作成されたレイヤーに挿入されます

これは私のコードです:

public void test(Coordinate coord,string ftype)
{

        foreach (var item in map1.Layers)
        {
            if (item.LegendText ==ftype)
            {
                int selectedIndex = map1.Layers.IndexOf(item);
                ((Legend)map1.Legend).ClearSelection();
                map1.Layers[selectedIndex].IsSelected = true;
                map1.Layers.SelectedLayer = map1.Layers[selectedIndex];
                map1.Legend.RefreshNodes();
                label1.Text = Convert.ToString(selectedIndex);
            }

        }
        DotSpatial.Topology.Point point = new DotSpatial.Topology.Point(coord);
        IFeatureSet ifs = new FeatureSet(FeatureType.Point);
        IFeature currentFeature = ifs.AddFeature(point);
        DotSpatial.Symbology.CharacterSymbol pcs = new DotSpatial.Symbology.CharacterSymbol('o', "Webdings", Color.Black, 32);
        DotSpatial.Symbology.PointCategory pc = new DotSpatial.Symbology.PointCategory(pcs);
        pc.Symbolizer.ScaleMode = ScaleMode.Simple;
        pointScheme.AddCategory(pc);
        mpl.Symbology = pointScheme;
        mpl.ApplyScheme(pointScheme);
        _tempLayer = mpl;
        map1.MapFrame.DrawingLayers.Add(mpl);
        map1.MapFrame.Invalidate();
        map1.Invalidate();
        pointID++;
        map1.FunctionMode = FunctionMode.None;

    }`
4

1 に答える 1

0

Mappointlayerを変更する必要があることがわかりました

最初に見つかったレイヤーのインデックス selectedIndex = map1.Layers.IndexOf(item); 次に、マップポイントレイヤーに設定します

                mpl= (MapPointLayer)map1.Layers[selectedIndex];
于 2016-09-01T06:58:57.557 に答える