开发 Android 猎鹰SDK 开发指南 轨迹查询 查询终端实时位置

查询终端实时位置 最后更新时间: 2021年01月22日

可以使用服务id和终端id查询某个终端最后一次上报的位置信息,

查询代码如下:

aMapTrackClient.queryLatestPoint(new LatestPointRequest(serviceId, terminalId), new OnTrackListener() {
...
    @Override
    public void onLatestPointCallback(LatestPointResponse latestPointResponse) {
        if (latestPointResponse.isSuccess()) {
            Point point = latestPointResponse.getLatestPoint().getPoint();
            // 查询实时位置成功,point为实时位置信息
        } else {
            // 查询实时位置失败
        }
    }
});


返回顶部 示例中心 常见问题 智能客服 公众号
二维码