Updating a Location type property over MQTT
Good day,
I am trying to update a location property using MQTT. I am able to update a json property using MQTT with the message body looking like this:
{"latitude":-25.82,"longitude":28.176,"elevation":0,"units":"WGS84"}
I get the error message: [Unable To Convert From java.lang.String to LOCATION]. When I create a subscription on data change of the json property that looks like this it works:
me.Location = me.JSONLocation;
The location property updates correctly, which I am assuming means my format is correct.
Has anybody been able to update a location property using MQTT? It seems like it is not supported in the MQTT extension.
Thank you,
Johan Bester

