Track live location

Hi,
im trying to set the location of a ThingAsset in real time. The geoJson that i send to the attribute Location is:

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {},
      "geometry": {
        "type": "Point",
        "coordinates": [
          -71.39662742614745,
          -41.10309146483512
        ]
      }
    }
  ]
}

It does not work, any ideas? Thanks

Try to flip coordinates, i.e.


      "coordinates": [
          -41.10309146483512,
          -71.39662742614745
        ]

No luck flipping the coordinates! Thanks anyways. I tried this and is working :

{
  "type": "Point",
  "coordinates": [
    -71.39662742614745,
    -41.10309146483512
  ]
}
1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.