Package org.jdesktop.swingx

Examples of org.jdesktop.swingx.JXMapKit


    mainMenuBar.add(settingsMenu);
    return mainMenuBar;
  }

  private JXMapKit buildMap() {
    final JXMapKit mapkit = new JXMapKit();
    mapkit.setDefaultProvider(DefaultProviders.Custom);
    mapkit.setAddressLocationShown(false);
    final TileFactory factory = new DefaultTileFactory(new GW2TileFactoryInfo());
    mapkit.setTileFactory(factory);
    mapkit.setMiniMapVisible(false);
    mapkit.setPreferredSize(new Dimension(640, 480));

    mapkit.getMainMap().setDrawTileBorders(true);
    mapkit.getMainMap().setRestrictOutsidePanning(true);
    mapkit.getMainMap().setHorizontalWrapped(false);
    mapkit.getMainMap().setRecenterOnClickEnabled(true);
    return mapkit;
  }
View Full Code Here

TOP

Related Classes of org.jdesktop.swingx.JXMapKit

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.