1 / 5

KML In Google Map

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.

neola
Télécharger la présentation

KML In Google Map

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. KML In Google Map

  2. http://code.google.com/apis/kml/documentation/kmlreference.htmlhttp://code.google.com/apis/kml/documentation/kmlreference.html

  3. 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")); 

  4. Java API for KML? • http://code.google.com/p/javaapiforkml/ • http://labs.micromata.de/display/jak/Home

More Related