0

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

Juergen
  • 12,378
  • 7
  • 39
  • 55
Tony
  • 489
  • 2
  • 5
  • 22

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,187
  • 7
  • 70
  • 94