getCoordinatesAbsolute method

Mappoint getCoordinatesAbsolute(
  1. PixelProjection projection
)

Returns the absolute coordinates in pixel of this node

Implementation

Mappoint getCoordinatesAbsolute(PixelProjection projection) {
  _coordinatesAbsolute ??= projection.latLonToPixel(pointOfInterest.position);
  return _coordinatesAbsolute!;
}