예제 #1
0
        void BtnGetPointsClick(object sender, EventArgs e)
        {
            var ret = LocationUtils.FindLocation(tbAddress.Text);

            textBox1.Text = ret[0].ToString();
            textBox2.Text = ret[1].ToString();
            map.Position  = new PointLatLng(ret[0], ret[1]);
        }