Ignore:
Timestamp:
2010-11-07T13:59:29+01:00 (14 years ago)
Author:
oliverw
Message:

Added map legend.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/gui/AddressEditDialog.java

    r24107 r24109  
    190190                        } catch (Exception e) {                         
    191191                                e.printStackTrace();
    192                         }
    193                        
     192                        }                       
    194193                       
    195194                        /* Map Panel */
     
    199198                        mapPanel.setMinimumSize(new Dimension(200, 200));
    200199                        mapViewer.setVisible(false);
     200                       
     201                        JPanel mapControl = new JPanel(new GridLayout(1, 4));
     202                        JLabel mapL1 = new JLabel(tr("Complete Addresses"));
     203                        mapL1.setForeground(Color.BLUE);
     204                        mapControl.add(mapL1);
     205                       
     206                        JLabel mapL2 = new JLabel(tr("Incomplete Addresses"));
     207                        mapL2.setForeground(Color.RED);
     208                        mapControl.add(mapL2);
     209                       
     210                        JLabel mapL3 = new JLabel(tr("Selected Addresses"));
     211                        mapL3.setForeground(Color.ORANGE);
     212                        mapControl.add(mapL3);
     213                       
     214                        JLabel mapL4 = new JLabel(tr("Selected Street"));
     215                        mapL4.setForeground(Color.GREEN);
     216                        mapControl.add(mapL4);
     217                       
     218                        mapPanel.add(mapControl, BorderLayout.SOUTH);
    201219                                               
    202220                        /* Combine panels */
Note: See TracChangeset for help on using the changeset viewer.