Package net.runelite.api
Interface RenderOverview
-
public interface RenderOverview
Represents an overview of the currently rendered world map.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorldMapData
getWorldMapData()
The data represented by the render.WorldMapManager
getWorldMapManager()
Gets the world map manager.Point
getWorldMapPosition()
Gets the current position of the local player on the world map.float
getWorldMapZoom()
Gets the current zoom level of the world map.void
initializeWorldMap(WorldMapData var1)
Initializes the world map with the provided data.void
setWorldMapPositionTarget(WorldPoint worldPoint)
Sets the target position of the world map.
-
-
-
Method Detail
-
getWorldMapPosition
Point getWorldMapPosition()
Gets the current position of the local player on the world map.- Returns:
- the world map position
-
getWorldMapZoom
float getWorldMapZoom()
Gets the current zoom level of the world map.- Returns:
- the world map zoon
-
setWorldMapPositionTarget
void setWorldMapPositionTarget(WorldPoint worldPoint)
Sets the target position of the world map.- Parameters:
worldPoint
- the new target position
-
getWorldMapManager
WorldMapManager getWorldMapManager()
Gets the world map manager.- Returns:
- the world map manager
-
initializeWorldMap
void initializeWorldMap(WorldMapData var1)
Initializes the world map with the provided data.- Parameters:
var1
- the new map data
-
getWorldMapData
WorldMapData getWorldMapData()
The data represented by the render.- Returns:
- the map data
-
-