Inheritance: PureImageCache
        public MyImageCache()
        {
            Instance = this;

            CacheLocation = Path.GetDirectoryName(Application.ExecutablePath) + Path.DirectorySeparatorChar +
                            "gmapcache" + Path.DirectorySeparatorChar;
        }
        public MyImageCache()
        {
            Instance = this;

            CacheLocation = Settings.GetDataDirectory() +
                            "gmapcache" + Path.DirectorySeparatorChar;
        }
Example #3
0
        public MyImageCache()
        {
            Instance = this;

            CacheLocation = Path.GetDirectoryName(Application.ExecutablePath) + Path.DirectorySeparatorChar +
                            "gmapcache" + Path.DirectorySeparatorChar;
        }
Example #4
0
        public MyImageCache()
        {
            Instance = this;

            CacheLocation = Settings.GetDataDirectory() +
                            "gmapcache" + Path.DirectorySeparatorChar;
        }