Reputation: 89
I am working on a project that has a requirement of Indoor navigations by using iBeacon
. Have been searching a lot, I only found some paid sdk and other tools. I know how iBeacon
used for indoor navigation,but there is some problem. I want move user location first beacon to another but only on specific path,but now when user move than location not follow path as given by me.
Please let me know. Thanks in advance!!
Upvotes: 2
Views: 473
Reputation: 64941
While it is possible to build an indoor navigation system using beacons, it is not a trivial exercise. Beacons only provide a very small building block needed to create the overall system. Think of beacons as being a brick used to build a house. Are you up for building a house from scratch out of a pile of bricks and many other components?
You may be better off using an off-the-shelf SDK, even if it is paid, rather than building this yourself. If you do want to build it from scratch, there are several components you must build:
I worked on a team that built a beacon-based indoor nav system for the Consumer Electronics Show. It took multiple team members a few months to build the system from scratch using hundreds of beacons and low-level tools. Don't underestimate the effort involved.
Upvotes: 1
Reputation: 900
This answer is assuming that the user will have no other location services (GPS etc), it could be achieved using multiple iBeacons.
So with enough beacons, you can accurately plot the user's location in an indoor environment (provided you know the exact location of the iBeacons beforehand).
Upvotes: 0