cordova-plugin-googlemaps相机速度慢

时间:2016-08-14 04:58:47

标签: javascript html cordova google-maps-api-3

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

感觉不像是迟滞或任何东西,它只是动画缓慢。

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

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

1 个答案:

答案 0 :(得分:1)

经过一番挖掘后,我发现教程中的解决方案几乎看不到。除非你看起来很难,否则我认为你无法找到。无论如何,这里是

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