# Sailing Minimap Methods to interact with the minimap interface while sailing: ```{figure} ../../images/sailing_minimap.png ``` - - - ## ERSBoat enum ```pascal ERSBoat = enum(RAFT, SKIFF, SLOOP); ``` Enum representing the types of boat the player can own and use. - - - ## Minimap.GetBoat ```pascal function TRSMinimap.GetBoat(): TPointArray; ``` Returns a `TPointArray` of the player's boat. Example: ```pascal {$I WaspLib/osrs.simba} begin while True do ShowOnTarget(Minimap.GetBoat()); end. ``` ```{figure} ../../images/getboat.png ``` - - - ## Minimap.BoatRadians ```pascal property TRSMinimap.BoatRadians: Single; ``` Returns a the boat angle as radians. Example: ```pascal {$I WaspLib/osrs.simba} begin WriteLn Minimap.BoatRadians; end. ``` - - - ## Minimap.BoatDegrees ```pascal property TRSMinimap.BoatDegrees: Single; ``` Returns a the boat angle as degrees. Example: ```pascal {$I WaspLib/osrs.simba} begin WriteLn Minimap.BoatDegrees; end. ``` - - - ## Minimap.BoatType ```pascal property TRSMinimap.BoatType: ERSBoat; ``` Returns a the boat {ref}`ERSBoat` type. Example: ```pascal {$I WaspLib/osrs.simba} begin WriteLn Minimap.BoatType; end. ```