Examples of GoPalPosition


Examples of slash.navigation.gopal.GoPalPosition

        try {
            houseNo = Short.parseShort(getHouseNo());   // TODO eliminate this
        } catch (NumberFormatException e) {
            // intentionally left empty
        }
        return new GoPalPosition(getX(), getY(), null, null, getZipCode(), getCity(), null, getStreet(), null, houseNo);
    }
View Full Code Here

Examples of slash.navigation.gopal.GoPalPosition

    public Wgs84Position asGoogleMapsUrlPosition() {
        return asWgs84Position();
    }

    public GoPalPosition asGoPalRoutePosition() {
        return new GoPalPosition(getLongitude(), getLatitude(), getElevation(), getSpeed(), getTime(), getDescription());
    }
View Full Code Here

Examples of slash.navigation.gopal.GoPalPosition

    public BcrPosition asMTPPosition() {
        return this;
    }

    public GoPalPosition asGoPalRoutePosition() {
        return new GoPalPosition(getX(), getY(), null, null, getZipCode(), getCity(), null, getStreet(), null, null);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.