Package mapwriter.map.mapmode

Examples of mapwriter.map.mapmode.SmallMapMode


    // map view shared between large and small map modes
    this.view = new MapView(mw);
    this.view.setZoomLevel(zoomLevel);
   
    // small map mode
    this.smallMapMode = new SmallMapMode(this.mw.config);
    this.smallMap = new MapRenderer(mw, this.smallMapMode, this.view);
   
    // large map mode
    this.largeMapMode = new LargeMapMode(this.mw.config);
    this.largeMap = new MapRenderer(mw, this.largeMapMode, this.view);
View Full Code Here

TOP

Related Classes of mapwriter.map.mapmode.SmallMapMode

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.