0

Is there a way to overlay directly a kmz file on google maps using the map activity class on android?

Juergen
  • 11,840
  • 7
  • 36
  • 54
Tony
  • 479
  • 1
  • 5
  • 21

1 Answers1

0

MapActivity class is deprecated. Consider using Google Maps Android API v2 if you are just starting.

Is there a way to overlay directly a kmz file (...)?

Yes. As directly as decompressing and parsing the file. For parsing you may have a look here: https://stackoverflow.com/a/3109723/2183804 or just google "android kml parser". If you use API v2, ignore anything related to MapView and MapActivity from that answer.

Community
  • 1
  • 1
MaciejGórski
  • 22,050
  • 7
  • 68
  • 93