getCoordinatesAbsolute method
Returns the absolute coordinates in pixel of this node
Implementation
Mappoint getCoordinatesAbsolute(PixelProjection projection) {
_coordinatesAbsolute ??= projection.latLonToPixel(pointOfInterest.position);
return _coordinatesAbsolute!;
}