Examples of Localidad


Examples of modelo.Localidad

        //Primero obtenemos las localidades de inicio y destino
        try {
            LugarEntrega lugarEntrega = (LugarEntrega) jComboBoxBarrios.getSelectedItem();
            PaqueteEntrega paqueteEntrega = this.modeloTablaPaquetesPorEntregar.getPaquetes().get(0);

            Localidad localidadInicio = this.mapaDatos.getLocalidades().get(lugarEntrega.getId() - 1);
            Localidad localidadDestino = this.mapaDatos.getLocalidades().get(paqueteEntrega.getPunto() - 1);
            System.out.println("Localidad Inicial: " + localidadInicio);
            System.out.println("Localidad Destino: " + localidadDestino);
          
            this.busqueda = new BusquedaAestrella(mapaDatos, textoRecorrido);
            ArrayList<Integer> rutaOptima = this.busqueda.buscarRutaOptima(localidadInicio, localidadDestino);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.