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

com.evrythng.thng.resource.model.store.geojson.GeoJsonPoint Maven / Gradle / Ivy

There is a newer version: 1.33
Show newest version
package com.evrythng.thng.resource.model.store.geojson;

public class GeoJsonPoint extends GeoJsonSingleCoordinate {

	private static final long serialVersionUID = -8762410528305978101L;

	public GeoJsonPoint() {

		this(0d, 0d);
	}

	public GeoJsonPoint(final Double latitude, final Double longitude) {

		super(GeoJsonType.POINT, latitude, longitude);
	}

	public GeoJsonPoint(final GeoJsonLocation coordinate) {

		super(GeoJsonType.POINT, coordinate);
	}

	@Override
	public String toString() {

		return "GeoJSONPoint [getCoordinate()=" + getCoordinates() + ", getType()=" + getType() + "]";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy