Changeset 620
- Timestamp:
- 07/18/08 12:08:21 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/tom-tweenlite/lib/com/modestmaps/core/TileGrid.as
r618 r620 117 117 protected static const DEFAULT_MAX_CHILD_SEARCH:int = 1; 118 118 protected static const DEFAULT_MAX_TILES_TO_KEEP:int = 256; 119 protected static const DEFAULT_TILE_BUFFER:int = 1;119 protected static const DEFAULT_TILE_BUFFER:int = 0; 120 120 protected static const DEFAULT_ENFORCE_BOUNDS:Boolean = true; 121 protected static const DEFAULT_MAX_OPEN_REQUESTS:int = 4; 121 protected static const DEFAULT_MAX_OPEN_REQUESTS:int = 4; // TODO: should this be split into max-new-requests-per-frame, too? 122 122 123 123 /** if we don't have a tile at currentZoom, onRender will look for tiles up to 5 levels out. … … 252 252 + "\nblank count: " + blankCount 253 253 + "\nrequests: " + openRequests.length 254 + "\nfinished tiles: " + tileCache.size254 + "\nfinished (cached) tiles: " + tileCache.size 255 255 + "\nrecently used tiles: " + recentlySeen.length 256 256 + "\nTiles created: " + map.tileCount branches/tom-tweenlite/samples/as3/ModestMapsSample.as
r610 r620 75 75 map.x = map.y = PADDING; 76 76 77 map.addChild(map.grid.debugField);77 //map.addChild(map.grid.debugField); 78 78 79 79 // if you want to wait for the Google version info to load
