Reputation: 31
I wonder if we can get the same behavior and performance in own Andorid app with Google map? If you are using SDK (native development) the performance is diff to what you can experience while using last Google map from Android market. Are there any tips on it? I really like this smooth maps display while scroll up\down and labeling of street names, etc.
Upvotes: 0
Views: 1514
Reputation: 10338
No you cannot get same performance while displaying maps in your own application. There are a couple of reasons for it:
Upvotes: 2
Reputation: 1007296
I wonder if we can get the same behavior and performance in own Andorid app with Google map?
Probably not. The Google Maps application does not use the same code base as does the Google Maps add-on for Android.
@Urban's point is very valid -- the more stuff you do in overlays, the slower things will be. An ItemizedOverlay
with 100+ points, for example, will definitely be felt.
But if you create an app using the Google Maps add-on without any overlays, the experience you see there is as fast as you are going to get. Overlays of any sort will only make things slower.
Upvotes: 1