Changeset 122

Show
Ignore:
Timestamp:
02/17/07 16:58:16 (2 years ago)
Author:
migurski
Message:

Minor tweaks

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/as2/lib/com/modestmaps/core/TileGrid.as

    r115 r122  
    138138        // impose some limits 
    139139        zoomLevel = initTileCoord.zoom; 
    140         topLeftOutLimit = __mapProvider.outerLimits()[0]; 
    141         bottomRightInLimit = __mapProvider.outerLimits()[1]; 
     140        topLeftOutLimit = mapProvider.outerLimits()[0]; 
     141        bottomRightInLimit = mapProvider.outerLimits()[1]; 
    142142         
    143143        // initial tile 
  • trunk/as2/lib/com/modestmaps/mapproviders/AbstractMapProvider.as

    r121 r122  
    6565    public function sourceCoordinate(coord:Coordinate):Coordinate 
    6666    { 
    67         return coord
     67        return coord.copy()
    6868    } 
    6969