Search code examples
androidgoogle-earthgoogle-earth-plugin

how to show google earth view in my android app


I want to develop an android application.

In which i want to add Google Earth View in my Application.

Is there any API available for that. or any other way to achieve it

please let me know if any solution available.


Solution

  • Yes you can use Google Map v2 in your Android Application. In v2 we have many good features. If you want your map to be available straight into your application, See this tutorial for including google map in your app : CLICK HERE

    you can simply set this to make your map look like Google Earth

    GoogleMap map;
    
    map.setMapType(GoogleMap.MAP_TYPE_HYBRID);
    

    Here You can change it to NORMAL, HYBRID AND TERRAIN. enter image description here