我已經閱讀了很多關於此API的內容。我開始用它,最後我取得了通過使用此代碼使用MouseDown事件在地圖上點擊放標誌物: using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Li
我加入的形狀,以我的WPF GMap.NET控制的代碼如下所示: System.Windows.Point p = e.GetPosition(gMapControl1);
var point = gMapControl1.FromLocalToLatLng((int)p.X, (int)p.Y);
GMapMarker m = new GMapMarker(point);
m.Shape
我做了一個使用gmap.net的應用程序。在地圖上我有三個標記。現在我想要做的是點擊一個標記打開一個新窗體,點擊第二個標記打開另一個窗體。這是代碼: using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
us