public IndoorMapsApiInternal(IIndoorMapTextureStreamingService textureStreamingService, string indoorMapMaterialDirectory)
        {
            m_handleToSelf = NativeInteropHelpers.AllocateNativeHandleForObject(this);

            IndoorMapTextureStreamingService = textureStreamingService;
            IndoorMapTextureFetcher          = new DefaultIndoorMapTextureFetcher(IndoorMapTextureStreamingService);
            IndoorMapMaterialFactory         = new DefaultIndoorMapMaterialFactory(indoorMapMaterialDirectory);
        }
 public DefaultIndoorMapTextureFetcher(IIndoorMapTextureStreamingService textureStreamingService)
 {
     m_textureStreamingService = textureStreamingService;
 }