internal MbTilesTileSource(SqliteConnection connection, ITileSchema schema = null, MbTilesType type = MbTilesType.None) { _tileSource = new MbTilesProvider(connection, schema, type); }
/// <summary> /// Creates an instance of this class /// </summary> /// <param name="provider">The MapBox Tiles provider</param> public MbTilesTileSource(MbTilesProvider provider) { _provider = provider; }
/// <summary> /// Creates an instance of this class /// </summary> /// <param name="provider">The MapBox Tiles provider</param> internal MbTilesTileSource(MbTilesProvider provider) { _provider = provider; }
public void TestConstructorFilename() { MbTilesProvider provider; Assert.DoesNotThrow( () => provider = new MbTilesProvider(MbTilesFile)); }