Package org.openstreetmap.josm.data.projection

Examples of org.openstreetmap.josm.data.projection.Mercator


   *            The parsed argument list.
   */
  public static void preConstructorInit(Map<String, Collection<String>> args) {
    try {
//      Main.proj = new Epsg4326();
      Main.proj = new Mercator();
    } catch (final Exception e) {
      e.printStackTrace();
      JOptionPane
          .showMessageDialog(
              null,
              tr("The projection could not be read from preferences. Using Mercartor"));
      Main.proj = new Mercator();
    }

    try {
      try {
        String laf = Main.pref.get("laf");
View Full Code Here

TOP

Related Classes of org.openstreetmap.josm.data.projection.Mercator

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.