toRaw method

Implementation

raw.VectorTile_GeomType toRaw() {
  switch (this) {
    case VectorTileGeomType.POINT:
      return raw.VectorTile_GeomType.POINT;
    case VectorTileGeomType.LINESTRING:
      return raw.VectorTile_GeomType.LINESTRING;
    case VectorTileGeomType.POLYGON:
      return raw.VectorTile_GeomType.POLYGON;
    default:
      return raw.VectorTile_GeomType.UNKNOWN;
  }
}