Reputation: 11
I use the util library maps android for Cluster item. I have many marker but It's too slow on navigation. Is there a way to optimize this apps?
You can see this video : https://youtu.be/lboDrBmI6xo
Upvotes: 1
Views: 2452
Reputation: 735
I believe that marker clustering is the way to go on Android and we have a utility library to use for this. You can check it out here
Upvotes: 0
Reputation: 17651
Here are suggestions to Optimize Maps with Many Makers:
One approach at simplification is to render markers on the server. Google provides two services built into the API that make this easy to achieve: FusionTablesLayer and KmlLayer. If you'd prefer to perform computations on your own server, this can be accomplished by creating a custom overlay from imagery that is pre-rendered, or rendered on the fly.
Another useful optimization technique involves viewport marker management: restricting the markers rendered on the map into only those that exist within the viewable area.
If you still want to display many markers on the map, consider creating a custom overlay that displays markers with minimal functionality. This approach may garner performance improvements over standard markers provided by the API.
Read more on the docs for optimization tips.
Upvotes: 1