point property

Point get point

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

Example:

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

Implementation

Point get point;