如何将相机始终设置在用户地理位置的中心

How to set the camera always to the center of the user's Geolocation

如何解决相机始终跟随用户的地理位置? 我试过这个,但它不起作用:

trackuserlocationstart.trigger();

抱歉,我真的是新手。

应该像这样简单:

if (navigator.geolocation) {
    navigator.geolocation.watchPosition(({ latitude, longitude }) => {
        map.panTo([longitude, latitude]);
    });
};