摄像头速度慢

cordova-plugin-googlemaps Camera Speed Slow

本文关键字:速度慢 摄像头      更新时间:2023-09-26

如何调整相机的动画速度?

感觉不像延迟或其他什么,它只是缓慢的动画。

在教程或其他任何地方都没有提到这个

map.animateCamera({
    target: {
        lat: "100",
        lng: "100",
        speed: 10 //I tried adding this, it doesn't do anything
    },
    zoom: 15
});

教程:https://github.com/mapsplugin/cordova-plugin-googlemaps

经过一番挖掘,我发现在教程中几乎看不到解决方案。我觉得你不努力找是找不到的。总之,在这里

map.animateCamera({
    target: {
        lat: "100",
        lng: "100"
    },
    zoom: 15,
    duration: 1000 //Camera Animation speed in milliseconds
});