fixed 1-pixel shift

This commit is contained in:
Komяpa 2010-06-29 13:33:00 +03:00
parent 7d6a0490c1
commit f555e1c13c
2 changed files with 9 additions and 7 deletions

View file

@ -62,7 +62,7 @@ class RasterTile:
if epsg4326:
lon, lat = projections.from4326((lon,lat),self.proj)
lo1, la1, lo2, la2 = self.bbox_p
return ((lon-lo1)*(self.w-1)/abs(lo2-lo1), ((la2-lat)*(self.h-1)/(la2-la1)))
return ((lon-lo1)*(self.w)/abs(lo2-lo1), ((la2-lat)*(self.h)/(la2-la1)))
# return (lon - self.center_coord[0])*self.lcc*self.zoom + self.w/2, -(lat - self.center_coord[1])*self.zoom + self.h/2
def update_surface_by_center(self, lonlat, zoom, style, lock = None):
self.zoom = zoom
@ -205,8 +205,6 @@ class RasterTile:
if "text" in obj[1]:
text = obj[1]["text"]
print obj[1].get("text-position", "cesdsdfgdfnter")
#cr.set_line_width (obj[1].get("width", 1))
cr.set_font_size(obj[1].get("font-size", 9))
if obj[1].get("text-position", "center") == "center":

View file

@ -49,7 +49,7 @@ class QuadTileBackend:
self.lang = lang # map language to use
self.tiles = {} # loaded vector tiles go here
self.data_projection = proj # which projection used to cut map in tiles
self.keep_tiles = 90 # a number of tiles to cache in memory
self.keep_tiles = 190 # a number of tiles to cache in memory
self.tile_load_log = [] # used when selecting which tile to unload
def filename(self, (z,x,y)):
@ -90,13 +90,17 @@ class QuadTileBackend:
a,d,c,b = [int(x) for x in projections.tile_by_bbox(bbox,zoom, self.data_projection)]
resp = {}
for tile in set([(zoom,i,j) for i in range(a, c+1) for j in range(b, d+1)]):
if tile not in self.tiles:
self.tiles[tile] = self.load_tile(tile)
try:
resp.update(self.tiles[tile])
except KeyError:
ti = self.load_tile(tile)
self.tiles[tile] = ti
resp.update(ti)
try:
self.tile_load_log.remove(tile)
except ValueError:
pass
self.tile_load_log.append(tile)
resp.update(self.tiles[tile])
self.collect_garbage()
return resp