I have big KML file to a native Android application, please check the following details and give an advice.
KML file details:
- size: 1.7 MB
- total number of kml file elements: 500 elements
- total number of polygon: 1000 polygon
Android app details:
- the above details will be viewed in Fragment
- I used the following support library to implement this screen compile 'com.google.maps.android:android-maps-utils:0.4+'
- some caluctations are done on loading the screens(like distance calculations)
Issue:
- Take a lot of time to load the map and kml layer about 8 sec create KMLLayer instance
What is the best practice to implement the above details with good performance?
please advise.