예제 #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();
        }
예제 #2
0
파일: GMaps.cs 프로젝트: Hogan2/myGMap.Net
        /// <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
        }
예제 #3
0
파일: CFMaps.cs 프로젝트: ralex1975/zq
 /// <summary>
 /// triggers dynamic sqlite loading,
 /// call this before you use sqlite for other reasons than caching maps
 /// </summary>
 public void SQLitePing()
 {
     SQLitePureImageCache.Ping();
 }