Reputation: 728
I am trying to get the direction/position of an iBeacon with respect to the mobile device from where I am monitoring the beacon. I am using the Altbeacon SDK
I tried to surf to find if the SDK provides any API to find this out. Please can you confirm if there is no such API at the moment? I also referred to the Triangulate example for iBeacons
Upvotes: 0
Views: 802
Reputation: 64951
The Android Beacon Library provides a distance estimate to the beacon in the ranging callback. However there is no directional component to this estimate.
Understand that beacons advertise their presence with Bluetooth radio signals. Bluetooth receivers have no inherent sense of direction. Just like with a radio or television, a signal can come from any direction. While it is possible to get a rough distance estimate based on the strength of the signal, there is no way to know the direction to a beacon when detected by a mobile device.
Full disclosure: I am the lead developer on the project.
Upvotes: 1