嘿伙计们我试图将动态Google地图嵌入JFrame(只是一个JFrame),这是可能的还是我在错误的树上咆哮
答案 0 :(得分:0)
您需要添加一个可以渲染Google地图使用的所有内容的Swing组件。我认为这可能很难,但我确定可能存在。
这可能很有用:link
更新:
我刚刚在JFrame中尝试使用此组件的Google地图。工作得非常好:)
答案 1 :(得分:0)
您可以在JFrame中添加浏览器视图,并在该浏览器中加载Google地图。
Browser browser = BrowserFactory.create();
JFrame frame = new JFrame("Google Map");
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.add(browser.getView().getComponent(), BorderLayout.CENTER);
frame.setSize(600, 400);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
browser.loadURL("http://maps.google.com");