Click here to Skip to main content
Click here to Skip to main content

Embedding Google Earth in a C# Application

By , 8 Dec 2008
 

Introduction

If you're interested in utilizing the Google Earth viewer as a control in a custom application, then continue reading. There are quite a few links around the Internet that provide information as to how to add references to your project, create a ApplicationGE, and control the Google Earth application. However, most of these tutorials do not focus on the details of embedding Google Earth in an application. That's what I will focus on here. From now on, GE means Google Earth.

The Code

You'll probably start off on your embedding adventure much like I did, with:

EARTHLib.ApplicationGE ge = new ApplicationGEClass();

If the GE process already exists, we will obtain a reference to it; if not, a new process will be created, and you would see the GE logo flash on the screen while loading. You will then see the main Google Earth screen with the embedded viewer. Since we are interested in embedding GE, we are not interested in having the main screen around, so we hide it!

ShowWindowAsync(ge.GetMainHwnd(), 0);

For all intensive purposes, we now have an empty screen. What we'd like to do next is embed the scene that GE renders into our application. We accomplish this by setting the render Hwnds parent to that of the window we would like to render to:

SetParent(ge.GetRenderHwnd(), this.Handle.ToInt32());

In the example above, 'this' is a Windows Form. The end result, if you perform these same steps, should look similar to the image below, although I do warn that results may vary :-)

google_earth_embedded.jpg

You will notice that resizing the window has no effect on the scene. If you plan on embedding GE in an application for any useful purposes, you'll most likely need it to respond to resizing. I spent a bit of time sniffing into the events that were passed to the scene when I performed re-size of the main GE application window. This led me to a special event, WM_QT_PAINT, in addition to a sequence of others. It took a bit of tinkering to get it all right, but this appeared to work for me:

SendMessage(ge.GetMainHwnd(), WM_COMMAND, WM_PAINT, 0);
PostMessage(ge.GetMainHwnd(), WM_QT_PAINT, 0, 0);
SetWindowPos( ge.GetMainHwnd(), HWND_TOP, 0, 0, (int)this.Width, 
             (int)this.Height, SWP_FRAMECHANGED);
SendMessage(ge.GetRenderHwnd(), WM_COMMAND, WM_SIZE, 0);

This should allow the scene to adjust according to the parent form's size. I bundled this up into a method named "ResizeGoogleControl", and called it after SetParent and within my Form_Resize event. The results are illustrated in this image:

google_earth_embedded_good.jpg

The Example

I slapped together a test app that you are welcome to use for reference. If you have any comments or suggestions, be sure to send me an email or add a comment. Create a new C# project in Visual Studio and replace the Form1.cs code with this:

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

using EARTHLib;

namespace resize_google_earth
{

public partial class Form1 : Form
{
    [DllImport("user32.dll")]
    private static extern int SetParent(
    int hWndChild,
    int hWndParent);

    [DllImport("user32.dll")]
    private static extern bool ShowWindowAsync(
    int hWnd,
    int nCmdShow);

    [DllImport("user32.dll", SetLastError = true)]
    private static extern bool PostMessage(
    int hWnd,
    uint Msg,
    int wParam,
    int lParam);

    [DllImport("user32.dll", EntryPoint = "SetWindowPos")]
    private static extern bool SetWindowPos(
    int hWnd,
    int hWndInsertAfter,
    int X,
    int Y,
    int cx,
    int cy,
    uint uFlags);

    [DllImport("user32.dll")]
    private static extern int SendMessage(
    int hWnd,
    uint Msg,
    int wParam,
    int lParam);

    private const int HWND_TOP = 0x0;
    private const int WM_COMMAND = 0x0112;
    private const int WM_QT_PAINT = 0xC2DC;
    private const int WM_PAINT = 0x000F;
    private const int WM_SIZE = 0x0005;
    private const int SWP_FRAMECHANGED = 0x0020;

    public Form1()
    {
        InitializeComponent();

        ge = new ApplicationGEClass();

        ShowWindowAsync(ge.GetMainHwnd(), 0);
        SetParent(ge.GetRenderHwnd(), this.Handle.ToInt32());
        ResizeGoogleControl();
    }

    private void Form1_Resize(object sender, EventArgs e)
    {
        ResizeGoogleControl();
    }

    private void ResizeGoogleControl()
    {
        SendMessage(ge.GetMainHwnd(), WM_COMMAND, WM_PAINT, 0);
        PostMessage(ge.GetMainHwnd(), WM_QT_PAINT, 0, 0);

        SetWindowPos(
        ge.GetMainHwnd(),
        HWND_TOP,
        0,
        0,
        (int)this.Width,
        (int)this.Height,
        SWP_FRAMECHANGED);

        SendMessage(ge.GetRenderHwnd(), WM_COMMAND, WM_SIZE, 0);
    }

    private EARTHLib.ApplicationGE ge = null;
}
}

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)

About the Author

Joseph Armbruster
Software Developer
United States United States
Member
I love to write programs and vim is my editor of choice. Programming languages fascinate me and I feel at least reasonably familiar with C, python, C++, JAVA, C#, ECMAScript, Lua and Ruby. I also use a few open source relational database systems; postgresql, mysql, sqlite. Some of my interests include: programming languages, geoprocessing, number theory, network protocols, web services, cryptography, linux, windows, open source, GIS.
 
See: http://www.joevial.com

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionForm not loading Google EarthmemberMember 842394629 Apr '13 - 10:09 
QuestionAdd GPSmember3nZo23 Apr '13 - 1:37 
QuestionDear Sir,memberEthiopaninomaltt23 Feb '13 - 2:51 
QuestionHow to get Coordiantes from cursormemberM.S.S.E21 Jan '13 - 23:57 
QuestionWPF CompatibiltymemberMember 960766617 Nov '12 - 8:23 
QuestionThis demo just open once , GE dont run in secondmembershindo2165 Sep '12 - 17:48 
AnswerRe: This demo just open once , GE dont run in secondmembershindo2165 Sep '12 - 18:21 
GeneralRe: This demo just open once , GE dont run in secondmemberraddog14 Jan '13 - 12:54 
QuestionMouse wheel zoom in/out doesn't work? [modified]membersherifffruitfly23 Aug '12 - 18:40 
Questionplace mark iconmembermojimoj18 Mar '12 - 8:52 
QuestionHimembermyazar16 Nov '11 - 9:31 
GeneralMy vote of 4memberspicolihill@hotmail.com27 May '11 - 11:44 
Clean code that shows the basics! good job Joe
Generalx64 (64bit) machinesmemberth3_v0ice1 May '11 - 6:10 
GeneralInitializeComponent()membernat0626 Jan '11 - 21:00 
GeneralRe: InitializeComponent()memberRayChenMedical21 Apr '11 - 6:25 
GeneralEARTHLib;membermostafa.elsadany7 Jan '11 - 4:28 
GeneralRe: EARTHLib;memberfosterz3 Feb '11 - 19:34 
GeneralRe: EARTHLib;memberMarkyMark7831 Dec '11 - 0:32 
GeneralMy vote of 5membercrazycoding20 Dec '10 - 1:05 
QuestionChange the rendering sizemembersdecorme6 Dec '10 - 23:17 
General[Help]how can close KML files.memberevhunter25 Nov '10 - 4:19 
GeneralMy vote of 5memberAbhinav S22 Oct '10 - 6:40 
QuestionHow to get to a particular latitude and longitudememberhemshankarsahu20 Oct '10 - 20:37 
AnswerRe: How to get to a particular latitude and longitudemembersdecorme6 Dec '10 - 23:20 
GeneralMy vote of 5membergvmohanraj13 Oct '10 - 22:59 
QuestionDo you have sample code with setcamera and how to resize?member5mayfive3 Oct '10 - 3:11 
GeneralGeez thnx dude this really works!memberJan Kurbanaliev31 Aug '10 - 23:59 
GeneralEmpty WindowmemberZimmermann Stefan13 Aug '10 - 4:42 
GeneralRe: Empty Windowmemberkanutiger19 Aug '10 - 5:45 
Questionwhere is the demo?memberwp873368413 Jul '10 - 6:31 
GeneralDownload of earthlibmemberjonnesvik17 Jun '10 - 8:32 
GeneralRe: Download of earthlibmemberkanutiger13 Aug '10 - 4:44 
General"Sniffing"memberNate Trimble26 May '10 - 14:02 
QuestionTop Right nevigation buttion is not displayingmemberchandrapal23 Mar '10 - 4:18 
QuestionHow to draw lines?memberwangchi16 Nov '09 - 22:40 
Questionhow about mousewheel?memberafoolofhn1 Nov '09 - 0:56 
GeneralGoogle Earth on C#membermarioonexxx29 Sep '09 - 0:45 
GeneralHelp ME! SOSmemberphamliem16 Sep '09 - 16:06 
Questionusing rulermemberpfrinec10 Sep '09 - 2:43 
Generaloverride errormemberjazzyrambo8 Sep '09 - 10:03 
QuestionNavigation bar and other GE functionalitiesmember__Gianluca__14 Apr '09 - 7:47 
AnswerRe: Navigation bar and other GE functionalitiesmemberBrian C. Hart, Ph.D.19 May '10 - 6:21 
Generalbefore close the app ,you should close the google earth first:)memberxam_jjf@yahoo.com.cn17 Mar '09 - 16:52 
GeneralRe: before close the app ,you should close the google earth first:)memberDragonfly_Lee21 Apr '09 - 19:44 
GeneralRe: before close the app ,you should close the google earth first:)memberBrian C. Hart, Ph.D.13 May '09 - 4:27 
GeneralRe: before close the app ,you should close the google earth first:)memberMarkJoel6019 May '10 - 6:09 
GeneralHa thats funnymvpSacha Barber22 Feb '09 - 23:58 
GeneralSetWindowPosmemberozerdenizege20 Feb '09 - 12:52 
GeneralNullReferenceException was unhandled Errormemberozerdenizege17 Feb '09 - 10:40 
GeneralHimemberAsif Basha16 Jan '09 - 1:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 8 Dec 2008
Article Copyright 2008 by Joseph Armbruster
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid