Changeset 352
- Timestamp:
- 10/22/07 16:59:12 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/as3/lib/com/modestmaps/mapproviders/microsoft/MicrosoftAerialMapProvider.as
r350 r352 22 22 override public function getTileUrl(coord:Coordinate):String 23 23 { 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"; 25 25 } 26 26 } trunk/as3/lib/com/modestmaps/mapproviders/microsoft/MicrosoftHybridMapProvider.as
r350 r352 21 21 override public function getTileUrl(coord:Coordinate):String 22 22 { 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"; 24 24 } 25 25 }
