point property

Point get point

beacon's X and Y coordinates in meters as Point (within the sublocation).

Example:

// Get beacon point
Point? point = beacon.getPoint();
if (point != null) {
 demonstratePointUsage(point);
}

Implementation

Point get point;