Package de.fhpotsdam.unfolding.marker

Examples of de.fhpotsdam.unfolding.marker.SimplePointMarker


    float y = 103.833002f;
    println(x + ", " + y);
    System.out.printf("x = %.9f y = %.9f \n", x, y);
    // println(PApplet.nf(x, 1, 9) + ", " + PApplet.nf(y, 1, 9));

    Marker marker1 = new SimplePointMarker(location1);
    Marker marker2 = new SimplePointMarker(location2);
    Marker marker3 = new SimplePointMarker(location3);
    map.addMarkers(marker1, marker2, marker3);
  }
View Full Code Here


  public void setup() {
    size(600, 600, OPENGL);
    map = new UnfoldingMap(this, new Microsoft.AerialProvider());

    marker = new SimplePointMarker(new Location(-15, -40));
    marker.setColor(color(0, 0, 255, 127));
    marker.setRadius(50);
   
    map.addMarker(marker);
  }
View Full Code Here

    mapsWithInner = createMaps(50, 20, 170, 170, 10, 10);
    mapsWithOuter = createMaps(650, 20, 170, 170, 10, 10);
    MapUtils.createDefaultEventDispatcher(this, mapsWithInner);

    // inner marker
    pointMarker = new SimplePointMarker(pointLocation);
    pointMarker.setRadius(5);
    areaMarker = new SimplePolygonMarker();
    areaMarker.addLocations(areaLocation1, areaLocation2, areaLocation3);
    labelMarker = new InnerLabelMarker(pointLocation);
    addMarkerToMaps(mapsWithInner, pointMarker, areaMarker, labelMarker);
View Full Code Here

TOP

Related Classes of de.fhpotsdam.unfolding.marker.SimplePointMarker

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.