getLeftUpper method

Mappoint getLeftUpper(
  1. Tile tile
)

Returns the top-left point of this tile in absolute pixel coordinates.

@return the top-left point

Implementation

//@override
Mappoint getLeftUpper(Tile tile) {
  return Mappoint(
      (tile.tileX * tileSize).toDouble(), (tile.tileY * tileSize).toDouble());
}