Package modelo

Examples of modelo.Mapa


     */
    public static void main(String args[]) {
        java.awt.EventQueue.invokeLater(new Runnable() {

            public void run() {
                MapaVista dialog = new MapaVista(new javax.swing.JFrame(), true, new Mapa(1, "Mapa de Loja", new Mapeo().mapearLocalidades()));
                dialog.addWindowListener(new java.awt.event.WindowAdapter() {

                    @Override
                    public void windowClosing(java.awt.event.WindowEvent e) {
                        System.exit(0);
View Full Code Here


        // supported by this particular VM on this particular host
        if (Desktop.isDesktopSupported()) {
            desktop = Desktop.getDesktop();
        }
        configurarCabecera();
        this.mapaDatos = new Mapa(1, "Mapa Loja", new Mapeo().mapearLocalidades());
        this.cargarAnimacion();

        this.modeloCombo1 = new ModeloComboBox(this.mapaDatos.getLugaresEntrega());
        this.jComboBoxBarrios.setModel(modeloCombo1);
        this.modeloCombo2 = new ModeloComboBox(this.mapaDatos.getLugaresEntrega());
View Full Code Here

        }
        return listaLocalidades;
    }

    public void mapearMapa() {
        this.mapa = new Mapa(1, "Loja", mapearLocalidades());
    }
View Full Code Here

    }

    public static void main(String[] args) {
        JFrame frame = new JFrame("Pizarra");
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
        PizarraSimulacion chart = new PizarraSimulacion(new Mapa(1, "Loja", new Mapeo().mapearLocalidades()));
        frame.add(chart, BorderLayout.CENTER);
        frame.pack();
        frame.setVisible(true);
        chart.createBufferStrategy(2);
View Full Code Here

        JFrame frame = new JFrame("Pizarra");

        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);

        Pizarra chart = new Pizarra(new Mapa(1, "Loja", new Mapeo().mapearLocalidades()));

        frame.add(chart, BorderLayout.CENTER);
        frame.pack();
        frame.setVisible(true);
        chart.createBufferStrategy(2);
View Full Code Here

TOP

Related Classes of modelo.Mapa

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.