I am displaying a map using HERE maps, i have made a button (3D) to tilt the map to a certain angle when clicked.
this is code i use for tilting the map:
function ChangeMapMode(btn) {
if ($(btn).data('map-mode')) {
mapGlobal.getViewModel().setLookAtData({
tilt: 0,
heading: 180,
});
$(btn).data('map-mode', false);
$(btn).attr('title', "3D");
$(btn).html('').html("3D");
}
else {
mapGlobal.getViewModel().setLookAtData({
tilt: 60,
});
}
}
This all works very well but the map tilts very qiuckly how can i make this transition smoother.