C#基于google earth的二次开发

本文介绍如何在C# Windows应用程序中嵌入Google Earth,并进行二次开发。通过新建一个WinForm面板,利用EARTHLib库和系统API进行交互,实现Google Earth地图控件在自定义面板上的显示与大小调整。在程序关闭时,释放相关句柄以避免问题。
摘要由CSDN通过智能技术生成

首先在C#中新建windows 应用程序。然后再form1中新建panel控件。命名为pnlEarth。

然后双击form1,进入form1.cs.

1、以下是代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

 

using EARTHLib;
using System.Runtime.InteropServices;
using HookAPI;
using System.Threading;

namespace MYGPS3
{
    public partial class Form1 : Form
    {

 

        private IntPtr _GEHrender;
        private IntPtr _GEParentHrender;
        private IntPtr _GEMainHandler;
        private IApplicationGE _googleEarth;
        private System.Windows.Forms.Control _parentControl;

        IntPtr mapPtr;
        IntPtr mainPtr;

        public Form1()
        {
            InitializeComponent();

        }

        private void Form1_Load(object sender, EventArgs e)
        {
            SetGEHandlerToControl(pnlEarth, _googleEarth);

        }

        /// <summary>
        /// 将GE的地图控件挂载到指定的控件中去
        /// </summary>
        /// <param name="parentControl">c#控件</param>
        /// <param name="geApplication">ge应用程序</param>
        publi

评论 10
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值