Package gistoolkit.display

Examples of gistoolkit.display.GISDisplay$AsyncDraw


        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));
        }
    }
View Full Code Here

TOP

Related Classes of gistoolkit.display.GISDisplay$AsyncDraw

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.