-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
5.1.0 , 5.4.0
-
None
-
Sailfish OS, QtLocation 5.1.0+git28-1.17.7
It seems that setting QtLocation's Map's zoomLevel property normally, i.e.
Map {
zoomLevel: 18
}
doesn't work, but it does work if set in a onCompleted handler, i.e.
Map {
id: map
Component.onCompleted: {
map.zoomLevel = 18;
}
}