All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cocoahero.android.geojson.Point Maven / Gradle / Ivy

There is a newer version: 9.2.1
Show newest version
package com.cocoahero.android.geojson;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import android.os.Parcel;
import android.os.Parcelable;

public class Point extends Geometry {

    // ------------------------------------------------------------------------
    // Instance Variables
    // ------------------------------------------------------------------------

    private Position mPosition;

    // ------------------------------------------------------------------------
    // Constructors
    // ------------------------------------------------------------------------

    public Point() {
        // Default Constructor
    }

    public Point(JSONObject json) {
        super(json);

        this.setPosition(json.optJSONArray(JSON_COORDINATES));
    }

    public Point(JSONArray position) {
        this.setPosition(position);
    }

    public Point(Position position) {
        this.setPosition(position);
    }

    public Point(double latitude, double longitude) {
        this.mPosition = new Position(latitude, longitude);
    }

    public Point(double latitude, double longitude, double altitude) {
        this.mPosition = new Position(latitude, longitude, altitude);
    }

    // ------------------------------------------------------------------------
    // Parcelable Interface
    // ------------------------------------------------------------------------

    public static final Parcelable.Creator CREATOR = new Creator() {
        @Override
        public Point createFromParcel(Parcel in) {
            return (Point) readParcel(in);
        }

        @Override
        public Point[] newArray(int size) {
            return new Point[size];
        }
    };

    // ------------------------------------------------------------------------
    // Public Methods
    // ------------------------------------------------------------------------

    public Position getPosition() {
        return this.mPosition;
    }

    public void setPosition(Position position) {
        this.mPosition = position;
    }

    public void setPosition(JSONArray position) {
        if (position != null) {
            this.mPosition = new Position(position);
        }
        else {
            this.mPosition = null;
        }
    }

    @Override
    public String getType() {
        return GeoJSON.TYPE_POINT;
    }

    @Override
    public JSONObject toJSON() throws JSONException {
        JSONObject json = super.toJSON();

        if (this.mPosition != null) {
            json.put(JSON_COORDINATES, this.mPosition.toJSON());
        }

        return json;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy