public class UiUtil {
protected static void addCommonButton(Container frame,final MapCtrl map){
UiUtil.addButton(frame,map,"全图",new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
map.executeCommand(new ExtentCommand(map,map.getLayerCollection().getEnvelop()));
map.refreshMap();
}
});
UiUtil.addButton(frame,map,"<=",new ActionListener() {