Search in sources :

Example 1 with PolyhedralSurface

use of mil.nga.sf.PolyhedralSurface in project geopackage-android-map by ngageoint.

the class GoogleMapShapeConverter method toPolyhedralSurfaceWithOptions.

/**
 * Convert a {@link MultiPolygonOptions} to a {@link PolyhedralSurface}
 *
 * @param multiPolygonOptions multi polygon options
 * @param hasZ                has z flag
 * @param hasM                has m flag
 * @return polyhedral surface
 */
public PolyhedralSurface toPolyhedralSurfaceWithOptions(MultiPolygonOptions multiPolygonOptions, boolean hasZ, boolean hasM) {
    PolyhedralSurface polyhedralSurface = new PolyhedralSurface(hasZ, hasM);
    for (PolygonOptions mapPolygon : multiPolygonOptions.getPolygonOptions()) {
        Polygon polygon = toPolygon(mapPolygon);
        polyhedralSurface.addPolygon(polygon);
    }
    return polyhedralSurface;
}
Also used : PolygonOptions(com.google.android.gms.maps.model.PolygonOptions) MultiPolygon(mil.nga.sf.MultiPolygon) CurvePolygon(mil.nga.sf.CurvePolygon) Polygon(mil.nga.sf.Polygon) PolyhedralSurface(mil.nga.sf.PolyhedralSurface)

Example 2 with PolyhedralSurface

use of mil.nga.sf.PolyhedralSurface in project geopackage-android-map by ngageoint.

the class GoogleMapShapeConverter method addToMap.

/**
 * Convert a {@link Geometry} to a Map shape and add it
 *
 * @param map      google map
 * @param geometry geometry
 * @return google map shape
 */
@SuppressWarnings("unchecked")
public GoogleMapShape addToMap(GoogleMap map, Geometry geometry) {
    GoogleMapShape shape = null;
    GeometryType geometryType = geometry.getGeometryType();
    switch(geometryType) {
        case POINT:
            shape = new GoogleMapShape(geometryType, GoogleMapShapeType.MARKER, addLatLngToMap(map, toLatLng((Point) geometry)));
            break;
        case LINESTRING:
            shape = new GoogleMapShape(geometryType, GoogleMapShapeType.POLYLINE, addPolylineToMap(map, toPolyline((LineString) geometry)));
            break;
        case POLYGON:
            shape = new GoogleMapShape(geometryType, GoogleMapShapeType.POLYGON, addPolygonToMap(map, toPolygon((Polygon) geometry)));
            break;
        case MULTIPOINT:
            shape = new GoogleMapShape(geometryType, GoogleMapShapeType.MULTI_MARKER, addLatLngsToMap(map, toLatLngs((MultiPoint) geometry)));
            break;
        case MULTILINESTRING:
            shape = new GoogleMapShape(geometryType, GoogleMapShapeType.MULTI_POLYLINE, addPolylinesToMap(map, toPolylines((MultiLineString) geometry)));
            break;
        case MULTIPOLYGON:
            shape = new GoogleMapShape(geometryType, GoogleMapShapeType.MULTI_POLYGON, addPolygonsToMap(map, toPolygons((MultiPolygon) geometry)));
            break;
        case CIRCULARSTRING:
            shape = new GoogleMapShape(geometryType, GoogleMapShapeType.POLYLINE, addPolylineToMap(map, toPolyline((CircularString) geometry)));
            break;
        case COMPOUNDCURVE:
            shape = new GoogleMapShape(geometryType, GoogleMapShapeType.MULTI_POLYLINE, addPolylinesToMap(map, toPolylines((CompoundCurve) geometry)));
            break;
        case CURVEPOLYGON:
            shape = new GoogleMapShape(geometryType, GoogleMapShapeType.POLYGON, addPolygonToMap(map, toCurvePolygon((CurvePolygon<Curve>) geometry)));
            break;
        case POLYHEDRALSURFACE:
            shape = new GoogleMapShape(geometryType, GoogleMapShapeType.MULTI_POLYGON, addPolygonsToMap(map, toPolygons((PolyhedralSurface) geometry)));
            break;
        case TIN:
            shape = new GoogleMapShape(geometryType, GoogleMapShapeType.MULTI_POLYGON, addPolygonsToMap(map, toPolygons((TIN) geometry)));
            break;
        case TRIANGLE:
            shape = new GoogleMapShape(geometryType, GoogleMapShapeType.POLYGON, addPolygonToMap(map, toPolygon((Triangle) geometry)));
            break;
        case GEOMETRYCOLLECTION:
            shape = new GoogleMapShape(geometryType, GoogleMapShapeType.COLLECTION, addToMap(map, (GeometryCollection<Geometry>) geometry));
            break;
        default:
            throw new GeoPackageException("Unsupported Geometry Type: " + geometryType.getName());
    }
    return shape;
}
Also used : MultiPoint(mil.nga.sf.MultiPoint) MultiLineString(mil.nga.sf.MultiLineString) CompoundCurve(mil.nga.sf.CompoundCurve) CircularString(mil.nga.sf.CircularString) Triangle(mil.nga.sf.Triangle) CurvePolygon(mil.nga.sf.CurvePolygon) MultiPoint(mil.nga.sf.MultiPoint) Point(mil.nga.sf.Point) PolyhedralSurface(mil.nga.sf.PolyhedralSurface) Geometry(mil.nga.sf.Geometry) GeometryType(mil.nga.sf.GeometryType) LineString(mil.nga.sf.LineString) MultiLineString(mil.nga.sf.MultiLineString) MultiPolygon(mil.nga.sf.MultiPolygon) TIN(mil.nga.sf.TIN) MultiPolygon(mil.nga.sf.MultiPolygon) CurvePolygon(mil.nga.sf.CurvePolygon) Polygon(mil.nga.sf.Polygon) GeoPackageException(mil.nga.geopackage.GeoPackageException)

Example 3 with PolyhedralSurface

use of mil.nga.sf.PolyhedralSurface in project geopackage-android-map by ngageoint.

the class GoogleMapShapeConverter method toPolyhedralSurface.

/**
 * Convert a list of {@link Polygon} to a {@link PolyhedralSurface}
 *
 * @param polygonList polygon list
 * @param hasZ        has z flag
 * @param hasM        has m flag
 * @return polyhedral surface
 */
public PolyhedralSurface toPolyhedralSurface(List<com.google.android.gms.maps.model.Polygon> polygonList, boolean hasZ, boolean hasM) {
    PolyhedralSurface polyhedralSurface = new PolyhedralSurface(hasZ, hasM);
    for (com.google.android.gms.maps.model.Polygon mapPolygon : polygonList) {
        Polygon polygon = toPolygon(mapPolygon);
        polyhedralSurface.addPolygon(polygon);
    }
    return polyhedralSurface;
}
Also used : MultiPolygon(mil.nga.sf.MultiPolygon) CurvePolygon(mil.nga.sf.CurvePolygon) Polygon(mil.nga.sf.Polygon) PolyhedralSurface(mil.nga.sf.PolyhedralSurface)

Example 4 with PolyhedralSurface

use of mil.nga.sf.PolyhedralSurface in project geopackage-android-map by ngageoint.

the class GoogleMapShapeConverterUtils method convertMultiPolygon.

/**
 * Test the PolyhedralSurface conversion
 *
 * @param converter
 * @param polyhedralSurface
 */
private static void convertMultiPolygon(GoogleMapShapeConverter converter, PolyhedralSurface polyhedralSurface) {
    MultiPolygonOptions mapPolygons = converter.toPolygons(polyhedralSurface);
    TestCase.assertNotNull(mapPolygons);
    TestCase.assertFalse(mapPolygons.getPolygonOptions().isEmpty());
    List<Polygon> polygons = polyhedralSurface.getPolygons();
    comparePolygonsAndMapPolygons(converter, polygons, mapPolygons.getPolygonOptions());
    PolyhedralSurface polyhedralSurface2 = converter.toPolyhedralSurfaceWithOptions(mapPolygons);
    comparePolygons(polygons, polyhedralSurface.getPolygons());
}
Also used : MultiPolygon(mil.nga.sf.MultiPolygon) Polygon(mil.nga.sf.Polygon) PolyhedralSurface(mil.nga.sf.PolyhedralSurface)

Aggregations

MultiPolygon (mil.nga.sf.MultiPolygon)4 Polygon (mil.nga.sf.Polygon)4 PolyhedralSurface (mil.nga.sf.PolyhedralSurface)4 CurvePolygon (mil.nga.sf.CurvePolygon)3 PolygonOptions (com.google.android.gms.maps.model.PolygonOptions)1 GeoPackageException (mil.nga.geopackage.GeoPackageException)1 CircularString (mil.nga.sf.CircularString)1 CompoundCurve (mil.nga.sf.CompoundCurve)1 Geometry (mil.nga.sf.Geometry)1 GeometryType (mil.nga.sf.GeometryType)1 LineString (mil.nga.sf.LineString)1 MultiLineString (mil.nga.sf.MultiLineString)1 MultiPoint (mil.nga.sf.MultiPoint)1 Point (mil.nga.sf.Point)1 TIN (mil.nga.sf.TIN)1 Triangle (mil.nga.sf.Triangle)1