Intent myMap = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("geo:0,0?q=http://www.xxx.net/my.kml");
myMap.setData(uri);
startActivity(Intent.createChooser(myMap, "mymap2"));BUT I create my kml with dom. at the end i have my KML Document -->org.w3c.dom.Document how to load this document on a map? any other possible solution? THANK YOU --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

