Package org.freeplane.plugin.openmaps.mapelements

Examples of org.freeplane.plugin.openmaps.mapelements.OpenMapsDialog


    super();
    registerStateIconProvider();
  }
 
  public void chooseLocation() {
    map = new OpenMapsDialog();
    map.getController().addLocationChoosenListener(this);
  }
View Full Code Here


  public void viewCurrentlySelectedLocation() {
    final NodeModel node = getCurrentlySelectedNode();
    OpenMapsExtension openMapsExtension = (OpenMapsExtension) node.getExtension(OpenMapsExtension.class);
   
    if (openMapsExtension != null) {
      map = new OpenMapsDialog();
      map.showZoomToLocation(openMapsExtension.getLocation(), openMapsExtension.getZoom());
    }
   
  }
View Full Code Here

TOP

Related Classes of org.freeplane.plugin.openmaps.mapelements.OpenMapsDialog

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.