Index: applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/AddressEditDialog.java
===================================================================
--- applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/AddressEditDialog.java	(revision 24108)
+++ applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/AddressEditDialog.java	(revision 24109)
@@ -190,6 +190,5 @@
 			} catch (Exception e) {				
 				e.printStackTrace();
-			}
-			
+			}			
 			
 			/* Map Panel */
@@ -199,4 +198,23 @@
 			mapPanel.setMinimumSize(new Dimension(200, 200));
 			mapViewer.setVisible(false);
+			
+			JPanel mapControl = new JPanel(new GridLayout(1, 4));
+			JLabel mapL1 = new JLabel(tr("Complete Addresses"));
+			mapL1.setForeground(Color.BLUE);
+			mapControl.add(mapL1);
+			
+			JLabel mapL2 = new JLabel(tr("Incomplete Addresses"));
+			mapL2.setForeground(Color.RED);
+			mapControl.add(mapL2);
+			
+			JLabel mapL3 = new JLabel(tr("Selected Addresses"));
+			mapL3.setForeground(Color.ORANGE);
+			mapControl.add(mapL3);
+			
+			JLabel mapL4 = new JLabel(tr("Selected Street"));
+			mapL4.setForeground(Color.GREEN);
+			mapControl.add(mapL4);
+			
+			mapPanel.add(mapControl, BorderLayout.SOUTH);
 						
 			/* Combine panels */
