Package de.fhpotsdam.unfolding.utils

Examples of de.fhpotsdam.unfolding.utils.DebugDisplay


    map = new UnfoldingMap(this, "Satellite Map", new Microsoft.AerialProvider());
    map.zoomAndPanTo(center, 14);
    MapUtils.createDefaultEventDispatcher(this, map);

    debugDisplay = new DebugDisplay(this, map);
  }
View Full Code Here


    map = new UnfoldingMap(this, "Satellite Map", new Microsoft.AerialProvider());
    map.zoomAndPanTo(center, 14);
    MapUtils.createDefaultEventDispatcher(this, map);

    debugDisplay = new DebugDisplay(this, map);
  }
View Full Code Here

    // Prints all listeners
    printEventDispatcher();
   
   
    debugDisplay1 = new DebugDisplay(this, map1, eventDispatcher, 15, 165);
    debugDisplay2 = new DebugDisplay(this, map2, eventDispatcher, 425, 165);
    debugDisplay3 = new DebugDisplay(this, map3, eventDispatcher, 835, 165);
  }
View Full Code Here

    map1.zoomAndPanTo(new Location(52.5f, 13.4f), 10);
    map2 = new UnfoldingMap(this, "map2", 512, 0, 512, height, true, false, new Microsoft.AerialProvider());
    EventDispatcher eventDispatcher = MapUtils.createDefaultEventDispatcher(this, map1, map2);

    // Create debug displays
    debugDisplay1 = new DebugDisplay(this, map1, eventDispatcher, 10, 10);
    debugDisplay2 = new DebugDisplay(this, map2, eventDispatcher, 522, 10);
  }
View Full Code Here

    map = new UnfoldingMap(this, "myMap");
    map.zoomAndPanTo(new Location(52.5f, 13.4f), 10);
    MapUtils.createDefaultEventDispatcher(this, map);

    // Create debug display (optional: specify position and size)
    debugDisplay = new DebugDisplay(this, map);
  }
View Full Code Here

    map.zoomAndPanTo(SINGAPORE_LOCATION, 14);
    map.setZoomRange(14, 22);

    MapUtils.createDefaultEventDispatcher(this, map);

    debugDisplay = new DebugDisplay(this, map);

    map.updateMap();

    float x = 103.833000f;
    float y = 103.833002f;
View Full Code Here

    // Creates default mapDisplay
    map = new UnfoldingMap(this, "map", 0, 0, 800, 600);
    map.setTweening(false);

    debugDisplay = new DebugDisplay(this, map);

    // default dispatcher
    eventDispatcher = MapUtils.createDefaultEventDispatcher(this, map);
  }
View Full Code Here

    map = new UnfoldingMap(this, "map1", 50, 50, 700, 500);
    map.setTweening(false);
    // MapUtils.createDefaultEventDispatcher(this, map);

    debugDisplay = new DebugDisplay(this, map, 0, 0);

    addMouseWheelListener(new java.awt.event.MouseWheelListener() {
      public void mouseWheelMoved(java.awt.event.MouseWheelEvent evt) {
        mouseWheel(evt.getWheelRotation());
      }
View Full Code Here

    map = new UnfoldingMap(this);
    map.setTweening(true);
    MapUtils.createDefaultEventDispatcher(this, map);

    debugDisplay = new DebugDisplay(this, map);
  }
View Full Code Here

TOP

Related Classes of de.fhpotsdam.unfolding.utils.DebugDisplay

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.