Android Google Maps/Earth opening Local KML/KMZ file and play the tour functionality
问题 Is there a way to open a local KML/KMZ file in Google Maps/Earth app on Android? Tried the below approach but didn't work. Intent mapIntent = new Intent(Intent.ACTION_VIEW); Uri uri1 = Uri .parse("geo:0,0?q=file:///mnt/sdcard/doc.kml"); mapIntent.setData(uri1); startActivity(Intent.createChooser(mapIntent, "Sample")); If not and if we can specify only links that are hosted on the web then can we specify a link to the Google Drive file to show directly on Google Maps/Earth? Intent mapIntent =