适用于 azure iot central 设备 属性 的正确位置格式是什么?

What is the correct format for location that works with azure iot central's device property?

我更新了一个设备 属性,其位置浮点如 (11.111, -116.11) 和 dms 格式,但仪表板中的 Azure 地图似乎没有更新。有人有什么想法吗?

这里是定位设备 属性 有效负载的示例:

“设备位置”:{ “纬度”:122, “隆”:45 }

在此示例中,"devicelocation" 是您在定义设备模型时必须声明的字段名称。

如果您使用的是 .Net API,可以如下指定位置(代码示例):

TwinCollection reportedProperties = new TwinCollection();

reportedProperties["devicelocation"] = new { lon= 122, lat= 45 };