Overview Does Not Show Map

I have a map and and overview in an applet. The overview does not show the scaled version of the map. I am setting the observed property on the overview and nothing else. From the sample and the documentation it looks like this should be it. Am I missing something?

What do you use for the map? Is it a document object?
JGoOverview’s Observed view tells the overview which view to watch, for scale and position. But it only displays that view’s document objects, not any view objects such as selection handles.
You might want to put your map into your document, probably in a background layer.

Sorry, map is our term, it is a standard JGoView and the objects are added to the current Document.
mapView.getDocument().addObjectAtTail(newNode);

I actually have created this in a sample applet. Here is the entire code. This does not work.
boolean isStandalone = false;
BorderLayout borderLayout1 = new BorderLayout();
JGoPalette jGoPalette1 = new JGoPalette();
JGoView jGoView1 = new JGoView();
XYLayout xYLayout1 = new XYLayout();
JGoOverview jGoOverview1 = new JGoOverview();
//Get a parameter value
public String getParameter(String key, String def) {
return isStandalone ? System.getProperty(key, def) :
(getParameter(key) != null ? getParameter(key) : def);
}
//Construct the applet
public Applet1() {
try {
jbInit();
} catch (Exception ex) {
ex.printStackTrace();
}
}
//Initialize the applet
public void init() {
try {
jbInit();
} catch (Exception e) {
e.printStackTrace();
}
}
//Component initialization
private void jbInit() throws Exception {
this.setLayout(xYLayout1);
jGoOverview1.setObserved(jGoView1);
jGoOverview1.setScale(.25);
jGoView1.addDocumentListener(new Applet1_jGoView1_documentAdapter(this));
jGoView1.addViewListener(new Applet1_jGoView1_viewAdapter(this));
this.add(jGoPalette1, new XYConstraints(234, 99, 58, 95));
this.add(jGoOverview1, new XYConstraints(306, 101, 51, 89));
this.add(jGoView1, new XYConstraints(235, 3, 161, 88));
jGoPalette1.setDragDropEnabled(true);
jGoView1.setDragDropEnabled(true);
JGoBasicNode node = new JGoBasicNode(“Node”);
node.setBrush(new JGoBrush(Color.blue));
jGoPalette1.getDocument().addObjectAtTail(node);
}

Is your code really any different from SampleApp?
What do you see? Or is there an exception?

OMG I hate JBuilder. This has to do with the how JBuilder loads up the appletviewer and runs the applet. If I load this in the page it works fine. Grrr. Thanks for your help.