// TerraExplorerShowcase.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#import "c:\Program Files\Skyline\TerraExplorer\TerraExplorerX.dll" no_namespace, named_guids
int _tmain(int argc, _TCHAR* argv[])
{
CoInitialize(NULL);
{
ITerraExplorer5Ptr pITerraExplorer5;
pITerraExplorer5.CreateInstance(CLSID_TerraExplorer);
IPlane5Ptr pIPlane5;
pITerraExplorer5.QueryInterface(IID_IPlane5,(IPlane5Ptr**)&pIPlane5);
pITerraExplorer5->Load("http://www.skylinesoft.com/SkylineGlobe/WebClient/PresentationLayer/WebClient/SkyglobeLB.fly");
pIPlane5->MovePosition(-102,27.5,3700000,10,0,0,0,-75.0,0);
}
CoUninitialize();
return 0;
}