Exemple #1
0
        /// <summary>
        /// </summary>
        public static void Initialize(PureImageProxy imageProxy)
        {
            TileImageProxy = imageProxy;

            // triggers dynamic SQLite loading, call this before you use SQLite for other reasons than caching maps
            SQLitePureImageCache.Ping();
        }
Exemple #2
0
        /// <summary>
        /// triggers dynamic sqlite loading,
        /// call this before you use sqlite for other reasons than caching maps
        /// </summary>
        public void SQLitePing()
        {
#if SQLite
#if !MONO
            SQLitePureImageCache.Ping();
#endif
#endif
        }
Exemple #3
0
 /// <summary>
 /// triggers dynamic sqlite loading,
 /// call this before you use sqlite for other reasons than caching maps
 /// </summary>
 public void SQLitePing()
 {
     SQLitePureImageCache.Ping();
 }