Accessing Landmarks from the SDK

mjs0

The 4th X
Joined
Nov 9, 2001
Messages
1,063
Location
Central Florida
I am using the SDK to create landmarks to dynamically label tiles.
I can successfully call addLandmark via cvDLLEngineIFaceBase to add a Landmark to a plot.
Unfortunately I can find no way to either update or remove landmarks that have been created this way from the SDK.
Has anyone seen anything in the SDK that might help.
Thanks.
 
mjs0,

why are you using the SDK to add landmarks? you can use the CyEngine class in python to add and remove landmarks:
Code:
VOID addLandmark(CyPlot pPlot, STRING caption)
void (CyPlot* pPlot, const TCHAR* caption)


VOID addLandmarkPopup(CyPlot pPlot)
void (CyPlot* pPlot)

VOID removeLandmark(CyPlot pPlot)
void (CyPlot* pPlot)
 
I'm was hoping to use it as a debugging tool to publish plot values for some changes I am making to the values calculated when the AI chooses city sites.
 
Top Bottom