Changeset 523
- Timestamp:
- 03/18/08 13:23:43 (6 months ago)
- Files:
-
- branches/tom-tweenlite/lib/com/modestmaps/core/MapConfig.as (modified) (1 diff)
- branches/tom-tweenlite/samples/flash/google_version.xml (modified) (1 diff)
- branches/tom-tweenlite/samples/flex/google_version.xml (modified) (1 diff)
- trunk/as2/google_version.xml (modified) (1 diff)
- trunk/as3/lib/com/modestmaps/mapproviders/google/AbstractGoogleMapProvider.as (modified) (1 diff)
- trunk/as3/samples/flash/google_version.xml (modified) (1 diff)
- trunk/as3/samples/flex/google_version.xml (modified) (1 diff)
- trunk/docs/home/updates.xml (modified) (1 diff)
- trunk/processing/sketches/modest_maps/Google.pde (modified) (1 diff)
- trunk/processing/src/com/modestmaps/providers/Google.java (modified) (1 diff)
- trunk/py/ModestMaps/Google.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/tom-tweenlite/lib/com/modestmaps/core/MapConfig.as
r518 r523 12 12 // Google often updates its tiles and expires old sets. 13 13 // The version numbers here are recent, but may change. 14 public var __roadVersion:String = "w2.6 6";15 public var __hybridVersion:String = "w2t.6 6";16 public var __aerialVersion:String = "2 4";14 public var __roadVersion:String = "w2.69"; 15 public var __hybridVersion:String = "w2t.69"; 16 public var __aerialVersion:String = "25"; 17 17 18 18 private var loaded:Boolean = false; branches/tom-tweenlite/samples/flash/google_version.xml
r461 r523 1 1 <?xml version="1.0"?> 2 <version road="w2.6 6" hybrid="w2t.66" aerial="24"/>2 <version road="w2.69" hybrid="w2t.69" aerial="25"/> branches/tom-tweenlite/samples/flex/google_version.xml
r461 r523 1 1 <?xml version="1.0"?> 2 <version road="w2.6 6" hybrid="w2t.66" aerial="24"/>2 <version road="w2.69" hybrid="w2t.69" aerial="25"/> trunk/as2/google_version.xml
r461 r523 1 1 <?xml version="1.0"?> 2 <version road="w2.6 6" hybrid="w2t.66" aerial="24"/>2 <version road="w2.69" hybrid="w2t.69" aerial="25"/> trunk/as3/lib/com/modestmaps/mapproviders/google/AbstractGoogleMapProvider.as
r461 r523 20 20 // Google often updates its tiles and expires old sets. 21 21 // The version numbers here are recent, but may change. 22 protected static var __roadVersion:String = "w2.6 6";23 protected static var __hybridVersion:String = "w2t.6 6";24 protected static var __aerialVersion:String = "2 4";22 protected static var __roadVersion:String = "w2.69"; 23 protected static var __hybridVersion:String = "w2t.69"; 24 protected static var __aerialVersion:String = "25"; 25 25 26 26 // An XML file is checked for up-to-date version numbers. trunk/as3/samples/flash/google_version.xml
r461 r523 1 1 <?xml version="1.0"?> 2 <version road="w2.6 6" hybrid="w2t.66" aerial="24"/>2 <version road="w2.69" hybrid="w2t.69" aerial="25"/> trunk/as3/samples/flex/google_version.xml
r461 r523 1 1 <?xml version="1.0"?> 2 <version road="w2.6 6" hybrid="w2t.66" aerial="24"/>2 <version road="w2.69" hybrid="w2t.69" aerial="25"/> trunk/docs/home/updates.xml
r477 r523 5 5 Information on new releases and patches made necessary by occasional updates from map tile providers. 6 6 </subtitle> 7 <updated>2008-0 2-03T13:45:00-0800</updated>7 <updated>2008-03-18T13:30:00-0700</updated> 8 8 <id>tag:modestmaps.com,feed</id> 9 9 <link rel="alternate" type="text/html" hreflang="en" href="http://modestmaps.com/"/> 10 10 <link rel="self" type="application/atom+xml" href="http://modestmaps.com/updates.xml"/> 11 <entry> 12 <title>March 2008 Google Maps Version Update</title> 13 <id>tag:modestmaps.com,march2008gmaps</id> 14 <link rel="enclosure" type="application/x-gzip" href="http://modestmaps.com/ModestMaps-1.0.tar.gz"/> 15 <link rel="enclosure" type="text/xml" href="http://modestmaps.mapstraction.com/trac/browser/trunk/as3/samples/flash/google_version.xml?format=raw"/> 16 <updated>2008-03-18T13:30:00-0700</updated> 17 <published>2008-03-18T13:30:00-0700</published> 18 <author><name>Michal Migurski</name></author> 19 <content type="html"> 20 <![CDATA[<a href="http://maps.google.com">Google Maps</a> have updated the version numbers on their road and hybrid tiles. Download <a href="http://modestmaps.com/ModestMaps-1.0.tar.gz">a fresh copy of Modest Maps</a> (304K) or just the up-to-date <a href="http://modestmaps.mapstraction.com/trac/browser/trunk/as3/samples/flash/google_version.xml">google_version.xml</a> file.]]> 21 </content> 22 </entry> 11 23 <entry> 12 24 <title>New Python Tutorials</title> trunk/processing/sketches/modest_maps/Google.pde
r489 r523 35 35 abstract class GoogleProvider extends AbstractMapProvider{ 36 36 37 String ROAD_VERSION = "w2.6 6";38 String AERIAL_VERSION = "2 4";39 String HYBRID_VERSION = "w2t.6 6";37 String ROAD_VERSION = "w2.69"; 38 String AERIAL_VERSION = "25"; 39 String HYBRID_VERSION = "w2t.69"; 40 40 String TERRAIN_VERSION = "w2p.64"; 41 41 trunk/processing/src/com/modestmaps/providers/Google.java
r498 r523 10 10 public static abstract class GoogleProvider extends AbstractMapProvider { 11 11 12 public static final String ROAD_VERSION = "w2.6 6";13 public static final String AERIAL_VERSION = "2 4";14 public static final String HYBRID_VERSION = "w2t.6 6";12 public static final String ROAD_VERSION = "w2.69"; 13 public static final String AERIAL_VERSION = "25"; 14 public static final String HYBRID_VERSION = "w2t.69"; 15 15 public static final String TERRAIN_VERSION = "w2p.64"; 16 16 trunk/py/ModestMaps/Google.py
r461 r523 25 25 import random, Tiles 26 26 27 ROAD_VERSION = 'w2.6 6'28 AERIAL_VERSION = '2 4'29 HYBRID_VERSION = 'w2t.6 6'27 ROAD_VERSION = 'w2.69' 28 AERIAL_VERSION = '25' 29 HYBRID_VERSION = 'w2t.69' 30 30 TERRAIN_VERSION = 'w2p.64' 31 31
