using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace WindowsFormsApplication2 { public partial class Form1 : Form { int dhandle; public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { axMap1.Projection = MapWinGIS.tkMapProjection.PROJECTION_WGS84; axMap1.KnownExtents = MapWinGIS.tkKnownExtents.keLatvia; } private void button2_Click(object sender, EventArgs e) { dhandle = axMap1.NewDrawing(MapWinGIS.tkDrawReferenceList.dlSpatiallyReferencedList); axMap1.DrawCircle(24.0,57.0,0.1,0,false); axMap1.DrawLabel("label", 24.0, 57.0, 0.0); } } }