Uses of Class
com.github.filosganga.geogson.model.Point
-
Packages that use Point Package Description com.github.filosganga.geogson.model -
-
Uses of Point in com.github.filosganga.geogson.model
Methods in com.github.filosganga.geogson.model that return Point Modifier and Type Method Description static PointPoint. from(double lon, double lat)Create a Point from the given coordinates.static PointPoint. from(double lon, double lat, double alt)Create a Point from the given coordinates.PointPoint. withAlt(double alt)Returns a new Point instance with the given z-axis value.PointPoint. withLat(double lat)Returns a new Point instance with the given x-axis value.PointPoint. withLon(double lon)Returns a new Point instance with the given x-axis value.Methods in com.github.filosganga.geogson.model that return types with arguments of type Point Modifier and Type Method Description List<Point>LinearGeometry. points()Returns the points composing this Geometry.Methods in com.github.filosganga.geogson.model with parameters of type Point Modifier and Type Method Description static LinearRingLinearRing. of(Point... points)Create a LinearRing from the given points.static LineStringLineString. of(Point... points)Creates a LineString from the given points.static MultiPointMultiPoint. of(Point... points)Creates a MultiPoint from the given points.Method parameters in com.github.filosganga.geogson.model with type arguments of type Point Modifier and Type Method Description static LinearRingLinearRing. of(Iterable<Point> points)Create a LinearRing from the given points.static LinearRingLinearRing. of(Stream<Point> points)Create a LinearRing from the given points.static LineStringLineString. of(Iterable<Point> points)Creates a LineString from the given points.static LineStringLineString. of(Stream<Point> points)Creates a LineString from the given points.static MultiPointMultiPoint. of(Iterable<Point> points)Creates a MultiPoint from the given points.static MultiPointMultiPoint. of(Stream<Point> points)Creates a MultiPoint from the given points.
-