Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Earth API vs Google Earth COM API

I want to use Google Earth in a desktop application.

My question is which one of these two APIs provided by google do you think has more functionality and/or best support?

Thank you very much

like image 534
Francisco Avatar asked Dec 09 '09 23:12

Francisco


1 Answers

Google Earth API is a Javascript API for use with the Google Earth browser plug-in.

This API is currently much more developed and offers features not currently found in the Google Earth COM API, but it is limited to the Google Earth browser plug-in.

There are some neat examples here.

If you are building a web application, this is your choice.

Google Earth COM API can be used to get information from and send commands to Google Earth (the standalone application).

This API appears to be younger or at least there are very few examples available.

If you are building a desktop application, this is probably the natural choice. (I say probably because it is possible to embed a browser object of some variety in a desktop application and then implement the Google Earth browser plug-in.)

So it's more a matter of Web Application vs Not, rather than functionality.

like image 83
ak112358 Avatar answered Oct 07 '22 21:10

ak112358