50 likes | 188 Vues
Discover how to use KML (Keyhole Markup Language) to display geographical data in Google Maps. This tutorial covers the integration process, including creating a KML file and using Java APIs for KML. Learn to launch map intents with specified locations and visualize data layers effectively. Access essential resources and documentation while enhancing your understanding of mapping technologies. Join us as we explore KML's potential in simplifying geographical visualizations and data representation in mobile applications.
E N D
http://code.google.com/apis/kml/documentation/kmlreference.htmlhttp://code.google.com/apis/kml/documentation/kmlreference.html
Display in map? Intent mapIntent = new Intent(Intent.ACTION_VIEW); Uri uri1 = Uri.parse("geo:0,0?q=http://perceval.gannon.edu/xu001/teaching/" + shared/mobileProgramming/PATrails/iExplorePAtrails_Bridges_wp.kmz");mapIntent.setData(uri1); startActivity(Intent.createChooser(mapIntent, "Sample"));
Java API for KML? • http://code.google.com/p/javaapiforkml/ • http://labs.micromata.de/display/jak/Home