Example #1
0
 def __init__(self, MapServ_inst, configpath):
     TilesRepository.__init__(self, MapServ_inst, configpath)
     self.set_repository_path(configpath)
     self.tile_cache = lrucache.LRUCache(1000)
     self.mapServ_inst = MapServ_inst
     self.lock = Lock()
     self.missingPixbuf = mapPixbuf.missing()
Example #2
0
    def __init__(self, MapServ_inst):
        self.tile_cache = lrucache.LRUCache(1000)
        self.mapServ_inst = MapServ_inst
        self.lock = Lock()
        self.configpath = self.mapServ_inst.configpath

        self.missingPixbuf = mapPixbuf.missing()
Example #3
0
 def __init__(self, MapServ_inst, configpath):
     TilesRepository.__init__(self, MapServ_inst, configpath)
     self.configpath = configpath
     self.tile_cache = lrucache.LRUCache(1000)
     self.mapServ_inst = MapServ_inst
     self.lock = Lock()
     self.missingPixbuf = mapPixbuf.missing()
    def __init__(self, MapServ_inst, configpath):
        TilesRepository.__init__(self, MapServ_inst, configpath)
        self.tile_cache = lrucache.LRUCache(1000)
        self.mapServ_inst = MapServ_inst
        self.configpath = configpath
        self.lock = Lock()

        self.missingPixbuf = mapPixbuf.missing()

        self.sqlite3func = SQLite3Funcs( self.configpath, SQLITE3_REPOSITORY_FILE )