How to display Google maps using JFrame? What is the mistake in this code? It's not showing proper location.
import javax.swing.*;
import javax.swing.event.*;
import java.io.*;
public class hyperlink extends JFrame {
public static void main(String arg[])throws Exception {
new hyperlink();
}
public hyperlink() throws Exception {
String s = "https://maps.google.com/maps?z=10&q=36.26577+-92.54324";
JEditorPane pane = new JEditorPane(s);
pane.setEditable(false);
final JEditorPane finalpane = pane;
pane.addHyperlinkListener(new HyperlinkListener() {
public void hyperlinkUpdate(HyperlinkEvent r) {
try {
if(r.getEventType() == HyperlinkEvent.EventType.ACTIVATED)
finalpane.setPage(r.getURL());
} catch(Exception e) {}
}
});
setContentPane(new JScrollPane(pane));
setSize(1000,1000);
setVisible(true);
}
}