Package de.fhpotsdam.unfolding.geo

Examples of de.fhpotsdam.unfolding.geo.MercatorProjection


*/
public class AcetateProvider {
  public static abstract class GenericAcetateProvider extends AbstractMapTileUrlProvider {

    public GenericAcetateProvider() {
      super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0, 3.355443185e7, 0.0,
          -1.068070890e7, 3.355443057e7)));
    }
View Full Code Here


*/
public class OpenWeatherProvider {
  public static abstract class GenericOpenWeatherMapProvider extends AbstractMapTileUrlProvider {

    public GenericOpenWeatherMapProvider() {
      super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0, 3.355443185e7, 0.0,
          -1.068070890e7, 3.355443057e7)));
    }
View Full Code Here

  private String carto = null;
  public static Logger log = Logger.getLogger(CartoDBProvider.class);
  public AbstractMapProvider masterProvider = null;

  public CartoDBProvider(String account, String dbTable) {
    super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0f, 3.355443185e7, 0.0,
        -1.068070890e7, 3.355443057e7)));
    this.subdomain = account;
    this.table = dbTable;
  }
View Full Code Here

TOP

Related Classes of de.fhpotsdam.unfolding.geo.MercatorProjection

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.