Changeset 122
- Timestamp:
- 02/17/07 16:58:16 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/as2/lib/com/modestmaps/core/TileGrid.as
r115 r122 138 138 // impose some limits 139 139 zoomLevel = initTileCoord.zoom; 140 topLeftOutLimit = __mapProvider.outerLimits()[0];141 bottomRightInLimit = __mapProvider.outerLimits()[1];140 topLeftOutLimit = mapProvider.outerLimits()[0]; 141 bottomRightInLimit = mapProvider.outerLimits()[1]; 142 142 143 143 // initial tile trunk/as2/lib/com/modestmaps/mapproviders/AbstractMapProvider.as
r121 r122 65 65 public function sourceCoordinate(coord:Coordinate):Coordinate 66 66 { 67 return coord ;67 return coord.copy(); 68 68 } 69 69
