QML listview model binded to QMap
Mobile and Embedded
2
Posts
2
Posters
2.1k
Views
2
Watching
-
I want to bind a listview to a qmap. Is this possible? If so, are there any examples out there? Any help would be greatly appreciated.
-
I want to bind a listview to a qmap. Is this possible? If so, are there any examples out there? Any help would be greatly appreciated.
@Gfloridafan93 AFAIK you cannot bind
QMaptoListViewmodel. As model is something which communicates with the data and provides an interface to the components which use it whereas QMap is just a container which contains the actual data. May be you can write a model which can useQMapinternally to store data temporarily.