Coordinates of beacons in estimote map

Hi,

I have a estimote map fetched from the configured locations. Is there a way to find (x,y) coordinates of the beacons?

Thank you

If you have the EILLocation object: it has a beacons property (http://estimote.github.io/iOS-Indoor-SDK/Classes/EILLocation.html#//api/name/beacons), which is an array of EILPositionedBeacon objects. And EILPositionedBeacon has a position property:

http://estimote.github.io/iOS-Indoor-SDK/Classes/EILPositionedBeacon.html#//api/name/position

… which is an EILOrientedPoint, which has x and y properties (: