putValue(SHORT_DESCRIPTION, "Center the map.");
putValue(LONG_DESCRIPTION, "Center the map on the click location.");
}
public void execute() {
GISDisplay tempDisplay = getGISDisplay();
if (tempDisplay != null) {
tempDisplay.setDrawModel(new ClickPointModel(this));
}
}