Package org.openstreetmap.gui.jmapviewer

Examples of org.openstreetmap.gui.jmapviewer.OsmFileCacheTileLoader$FileLoadJob


  public MapViewerLayer(String name, TileSource tileSource,
      TileCache tileCache, boolean osmFileCache) {
    super(name);
    this.tileSource = tileSource;
    if (osmFileCache) {
      this.tileLoader = new OsmFileCacheTileLoader(this);
    } else {
      this.tileLoader = new OsmTileLoader(this);
    }
    this.tileCache = tileCache;
    jobDispatcher = JobDispatcher.getInstance();
View Full Code Here

TOP

Related Classes of org.openstreetmap.gui.jmapviewer.OsmFileCacheTileLoader$FileLoadJob

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.