Link to home
Start Free TrialLog in
Avatar of smnetserv
smnetserv

asked on

How to Integrate Google Earth with Asp.net 2.0

Hi,
 
 
Recently we got one project which has requirement like this,
 
System feeds different -different GPS coordinates of Amazon Forest  and get the location using Google Earth.
 
We have GPS coordinates for whole Amazon forest.

Now could you please tell me how to integrate Asp.net (2.0) with google earth to get the above job done.

Can Google supports dlls to integrate with Asp.net.


Avatar of VoteyDisciple
VoteyDisciple

It sounds like what your'e talking about is Google MAPS, not Google Earth.  Google Earth runs as a desktop application, whereas Google Maps is the web-based version.  Maps definitely has a really easy API to work with any website; check out the documentation at http://www.google.com/apis/maps/
Check out this Thread - https://www.experts-exchange.com/questions/22055156/How-to-run-javascript-function-on-pageload-of-a-webform-that-is-derived-from-a-masterpage-asp-net-2-0.html

The trick is to inject the JavaScript that renders the Google Map in a .NET page.  There is no "DLL" that .NET can reference, the API is accessed via JavaScript.
Avatar of smnetserv

ASKER


Hi,

Is there any APIs available for Google earth just like Google Maps??

I want to integrate Google Earth with Asp.net .

Please let me know is it possible to integrate Google earth to Asp.net if not I will go for Google Maps
What doesn't make sense about your question is that with ASP you're talking about building a website, yet Google Earth is a standalone desktop program.  There aren't really APIs to integrate a website with ANYTHING running on the desktop.  Wouldn't you be a little freaked out if you clicked a button on a website one day and the report you were writing in Word suddenly spell checked itself?


If you absolutely have to use Earth, then, you can certainly still provide layer information that Earth will gleefully display along with all the other layers the user has going.  Earth uses .kml files to describe layers ( see http://earth.google.com/kml/ ).  These are just XML files in a specific format describing what's to be shown.

You can certainly offer a link to a .kml file (even one generated automatically) that the user can download, and perhaps (depending on browser settings) open directly in Earth.

This is just a lot less interactive than a traditional Google Map.  If the user wants to change what's shown after interacting with your site some more, you can certainly offer a freshly generated .kml, but now it opens in ADDITION to the old layer, instead of replacing it.  Perhaps what makes it more uncomfortable is that the user is now interacting with the Earth in one window and the control panel for it in another.

Even if you do allow .kml layers for download, I'd suggest additionally using a Map inline, so that the user can at least play with the data before pulling it into Earth.
ASKER CERTIFIED SOLUTION
Avatar of VoteyDisciple
VoteyDisciple

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi,

I understood the limitation of Google Earth integration to ASP.net.

I also understood your point.

But even if i go for KML layer approch,give only GPS coordinates ang get the exact location in Google earth,Do all end users of my site need to download Google earth  or it will directly open the Google earth ??

Like any desktop application users need to have it installed to be able to use it.  If I gave you a .doc file but you didn't have Microsoft Word installed, clearly you wouldn't be able to view it (barring using another program that can read .doc files).  That's no different with .kml files -- if you don't have the software installed the file does you no good.