I want to create an app that will do massive use of google maps api. In particular, I wanna display a map, add a lot(and I do mean a lot) of data on top of the map, and constantly display the user location in the map.
I'm struggling between two option- native vs hybrid:
Hybrid: Pros: - cross browser - I can use maps engines lite and therefore avoid the need of manually drawing my data on the map. Cons: - hybrid app are known of bad performance in comparison to native. - the user location constant update not good as native
Native: -pros: - good performance - better gps access -cons: - need of separate apps for different OS - no maps engine support. Need of constant manual drawing on map
Maybe someone can advice me?
P.s. I thought of implementing hybrid without phone gap - and to create a native app that will use a browser only to display the maps engine map - to improve performance
Thanks