Parses a Mapbox .mvt binary stream and returns a List of VectorTileLayer objects
            
    Namespace: 
   EGIS.Mapbox.Vector.TileAssembly: EGIS.Mapbox.Vector.Tile (in EGIS.Mapbox.Vector.Tile.dll)
 Syntax
Syntax
| Visual Basic | 
|---|
| Public Shared Function Parse ( _ stream As Stream _ ) As List(Of VectorTileLayer) | 
| C# | 
|---|
| public static List<VectorTileLayer> Parse( Stream stream ) | 
| Visual C++ | 
|---|
| public: static List<VectorTileLayer^>^ Parse( Stream^ stream ) | 
| JavaScript | 
|---|
| EGIS.Mapbox.Vector.Tile.VectorTileParser.parse = function(stream); | 
Parameters
- stream
- Type: System.IO..::..Stream
 stream opened from a .mvt Mapbox tile
 
     
     
     
     
    