Examples of NearestResourcesDialog


Examples of es.emergya.ui.gis.popups.NearestResourcesDialog

                  }
                  return null;
                }
              }
            }
            NearestResourcesDialog d;
            if (menuObjective instanceof Recurso) {
              d = new NearestResourcesDialog(
                  (Recurso) menuObjective, mapViewLocal);
            } else if (menuObjective instanceof Incidencia) {
              d = new NearestResourcesDialog(
                  (Incidencia) menuObjective,
                  mapViewLocal.getLatLon(mouseEvent.getX(),
                      mouseEvent.getY()), mapViewLocal);
            } else {
              d = new NearestResourcesDialog(
                  mapViewLocal.getLatLon(mouseEvent.getX(),
                      mouseEvent.getY()), mapViewLocal);
            }
            d.setVisible(true);

          } else {
            log.error("ActionCommand desconocido: "
                + e.getActionCommand());
          }
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.