JMapViewer 添加用于离线视图的磁贴



您好,我在 Java 中使用此示例来尝试加载 OpenStreetMaps 离线磁贴,

例如,我在 C:/OSM/tiles/上有我的磁贴

但我需要知道如何在地图 (JMapViewer( 类中添加此信息以在本地加载瓷砖。

非常感谢您的帮助,这是我的来源:

//License: GPL. Copyright 2008 by Jan Peter Stotz
import org.openstreetmap.gui.jmapviewer.JMapViewer;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
/**
 *
 * Demonstrates the usage of {@link JMapViewer}
 *
 * @author Jan Peter Stotz
 *
 */
public class Demo extends JFrame {
    public Demo() {
        super("JMapViewer Demo");
        setSize(400, 400);
        final JMapViewer map = new JMapViewer();
        setLayout(new BorderLayout());
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setExtendedState(JFrame.MAXIMIZED_BOTH);
        JPanel panel = new JPanel();
        add(panel, BorderLayout.NORTH);
        final JCheckBox showMapMarker = new JCheckBox("Map markers visible");
        showMapMarker.setSelected(map.getMapMarkersVisible());
        showMapMarker.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                map.setMapMarkerVisible(showMapMarker.isSelected());
            }
        });
        panel.add(showMapMarker);
        final JCheckBox showTileGrid = new JCheckBox("Tile grid visible");
        showTileGrid.setSelected(map.isTileGridVisible());
        showTileGrid.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                map.setTileGridVisible(showTileGrid.isSelected());
            }
        });
        panel.add(showTileGrid);
        final JCheckBox showZoomControls = new JCheckBox("Show zoom controls");
        showZoomControls.setSelected(map.getZoomContolsVisible());
        showZoomControls.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                map.setZoomContolsVisible(showZoomControls.isSelected());
            }
        });
        panel.add(showZoomControls);
        add(map, BorderLayout.CENTER);
        //
//      map.addMapMarker(new MapMarkerDot(49.814284999, 8.642065999));
//      map.addMapMarker(new MapMarkerDot(49.91, 8.24));
//      map.addMapMarker(new MapMarkerDot(49.71, 8.64));
//      map.addMapMarker(new MapMarkerDot(48.71, -1));
//      map.addMapMarker(new MapMarkerDot(49.807, 8.644));
        map.setDisplayPositionByLatLon(-0.223056, -78.5126, 11);
    }
    /**
     * @param args
     */
    public static void main(String[] args) {
        new Demo().setVisible(true);
    }
}

一个不需要修改JMapViewer并重新编译它的更好的替代方法是提供你自己的TileSource实现,如下所示。

获取OfflineOsmTileSource,并像博客文章所说的那样使用它。

简单而优雅。您所需要的只是一些存储在本地的osm瓷砖,我认为您已经拥有了。

据我所知,JMapViewer被设计为仅使用在线地图。

改变这种行为接缝会变得很复杂。也许您可以通过实现自己的org.openstreetmap.gui.jmapviewer.TileLoader实例来实现这一点。该实现只需能够创建可运行的实例,这些实例将特定切片加载到 TileCache 中,并通知已注册的 TileLoaderListener 切片加载已完成。

我直接按源代码编译并更改

\

org\openstreetmap\gui\jmapviewer\tilesources\AbstractOsmTileSource.java

这是JMapViewer.zip/JMapViewer_src.jar中的源代码,提取Jar文件并复制邮件源代码文件夹中的文件夹/org

http://svn.openstreetmap.org/applications/viewer/jmapviewer/releases/2011-02-19/JMapViewer.zip

并更改下一个

 public AbstractOsmTileSource(String name, String base_url, String attr_img_url) {
        this.name = name;
     // this.baseUrl = base_url;
        this.baseUrl = "file:///C:/OSM/tiles";
        attrImgUrl = attr_img_url;
    }
我不知道

当这个线程发生时是否不支持这种方法,但是对于缓存离线瓷砖,他们提供了OsmFileCacheTileLoader;

http://josm.openstreetmap.de/doc/org/openstreetmap/gui/jmapviewer/OsmFileCacheTileLoader.html

它非常易于使用。

this.mapViewer = new JMapViewer();
OsmFileCacheTileLoader ofctl;
try {
    File cacheDir = new File(System.getProperty("user.home"), "OpenStreetMapTileCache");
    logger.info("Home Directory = " + System.getProperty("user.home") + ", cacheDir=" + cacheDir);
    cacheDir.mkdirs();
    ofctl = new OsmFileCacheTileLoader(mapViewer, cacheDir);
    this.mapViewer.setTileLoader(ofctl);
} catch (IOException ex) {
    Logger.getLogger(MapDisplayPanel.class.getName()).log(Level.SEVERE, "Exception creating OsmFileCacheTileLoader" + ex, ex);
}

相关内容

  • 没有找到相关文章

最新更新