point property

Point get point

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

Example:

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

Implementation

Point get point;