Changeset 352

Show
Ignore:
Timestamp:
10/22/07 16:59:12 (1 year ago)
Author:
tom
Message:

oops, there's no shading on ms aerial or hybrid

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/as3/lib/com/modestmaps/mapproviders/microsoft/MicrosoftAerialMapProvider.as

    r350 r352  
    2222                override public function getTileUrl(coord:Coordinate):String 
    2323                {                
    24                 return "http://a" + Math.floor(Math.random() * 4) + ".ortho.tiles.virtualearth.net/tiles/a" + getZoomString( coord ) + ".jpeg?g=90&shading=hill"; 
     24                return "http://a" + Math.floor(Math.random() * 4) + ".ortho.tiles.virtualearth.net/tiles/a" + getZoomString( coord ) + ".jpeg?g=90"; 
    2525                } 
    2626        } 
  • trunk/as3/lib/com/modestmaps/mapproviders/microsoft/MicrosoftHybridMapProvider.as

    r350 r352  
    2121                override public function getTileUrl(coord:Coordinate):String 
    2222                {                
    23                 return "http://h" + Math.floor(Math.random() * 4) + ".ortho.tiles.virtualearth.net/tiles/h" + getZoomString( coord ) + ".jpeg?g=90&shading=hill"; 
     23                return "http://h" + Math.floor(Math.random() * 4) + ".ortho.tiles.virtualearth.net/tiles/h" + getZoomString( coord ) + ".jpeg?g=90"; 
    2424                } 
    2525        }