Package org.openstreetmap.josm.data.projection.proj

Examples of org.openstreetmap.josm.data.projection.proj.ClassProjFactory


    public static void registerBaseProjection(String id, ProjFactory fac, String origin) {
        projs.put(id, fac);
    }

    public static void registerBaseProjection(String id, Class<? extends Proj> projClass, String origin) {
        registerBaseProjection(id, new ClassProjFactory(projClass), origin);
    }
View Full Code Here

TOP

Related Classes of org.openstreetmap.josm.data.projection.proj.ClassProjFactory

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.