Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Earth API for Android

I want to ask if Google Earth API is avaialble for developing android application. If google earth api is not available for android, are there any map api which can be used off network on android?

like image 502
user524496 Avatar asked Nov 29 '10 23:11

user524496


People also ask

Is there an API for Google Earth?

The Earth Engine API is available in Python and JavaScript, making it easy to harness the power of Google's cloud for your own geospatial analysis.

Is Google Earth API free?

All Maps Embed API requests are available at no charge with unlimited usage.

Is Google Maps API free for Android?

Note that the Maps Embed API, Maps SDK for Android, and Maps SDK for iOS currently have no usage limits and are at no charge (usage of the API or SDKs is not applied against your $200 monthly credit).

Can you get Google Earth on Android?

Show 3D imagery To turn 3D buildings and trees on or off: On your Android phone or tablet, open the Google Earth app. .


3 Answers

If you just want to open a location you can use the intents for searching on Google Earth. See How to fly to a location in Google Earth from your android app for examples

like image 83
Dahlgren Avatar answered Oct 14 '22 08:10

Dahlgren


No, there's no offline API on Android or Google Earth API. You can use the regular Android Google Maps package api, eventually in combination with the Google Maps web api, in case you need routing and directions as well.

Until SDK 0.9, Google had a navigation package/api included, but that has been dropped; I guess due to licensing issues. Note that real-time turn-by-turn navigation on Android is not allowed and against the ToS, while route navigation in general can be done, but only in combination with the maps web api.

like image 31
Mathias Conradt Avatar answered Oct 14 '22 09:10

Mathias Conradt


You can use the open source AndNav library for offline mapping. The API is very similar to the Android Google Maps one. The code can be found here: http://code.google.com/p/andnav/

Their wiki has a lot of good information and downloads for map tile packs.

like image 31
Eric Levine Avatar answered Oct 14 '22 08:10

Eric Levine