Changeset 523

Show
Ignore:
Timestamp:
03/18/08 13:23:43 (6 months ago)
Author:
migurski
Message:

Updated Google Maps version

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/tom-tweenlite/lib/com/modestmaps/core/MapConfig.as

    r518 r523  
    1212            // Google often updates its tiles and expires old sets. 
    1313            // The version numbers here are recent, but may change. 
    14                 public var __roadVersion:String = "w2.66"; 
    15                 public var __hybridVersion:String = "w2t.66"; 
    16                 public var __aerialVersion:String = "24"; 
     14                public var __roadVersion:String = "w2.69"; 
     15                public var __hybridVersion:String = "w2t.69"; 
     16                public var __aerialVersion:String = "25"; 
    1717 
    1818                private var loaded:Boolean = false; 
  • branches/tom-tweenlite/samples/flash/google_version.xml

    r461 r523  
    11<?xml version="1.0"?> 
    2 <version road="w2.66" 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  
    11<?xml version="1.0"?> 
    2 <version road="w2.66" hybrid="w2t.66" aerial="24"/> 
     2<version road="w2.69" hybrid="w2t.69" aerial="25"/> 
  • trunk/as2/google_version.xml

    r461 r523  
    11<?xml version="1.0"?> 
    2 <version road="w2.66" 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  
    2020            // Google often updates its tiles and expires old sets. 
    2121            // The version numbers here are recent, but may change. 
    22                 protected static var __roadVersion:String = "w2.66"; 
    23                 protected static var __hybridVersion:String = "w2t.66"; 
    24                 protected static var __aerialVersion:String = "24"; 
     22                protected static var __roadVersion:String = "w2.69"; 
     23                protected static var __hybridVersion:String = "w2t.69"; 
     24                protected static var __aerialVersion:String = "25"; 
    2525         
    2626            // An XML file is checked for up-to-date version numbers. 
  • trunk/as3/samples/flash/google_version.xml

    r461 r523  
    11<?xml version="1.0"?> 
    2 <version road="w2.66" hybrid="w2t.66" aerial="24"/> 
     2<version road="w2.69" hybrid="w2t.69" aerial="25"/> 
  • trunk/as3/samples/flex/google_version.xml

    r461 r523  
    11<?xml version="1.0"?> 
    2 <version road="w2.66" hybrid="w2t.66" aerial="24"/> 
     2<version road="w2.69" hybrid="w2t.69" aerial="25"/> 
  • trunk/docs/home/updates.xml

    r477 r523  
    55        Information on new releases and patches made necessary by occasional updates from map tile providers. 
    66    </subtitle> 
    7     <updated>2008-02-03T13:45:00-0800</updated> 
     7    <updated>2008-03-18T13:30:00-0700</updated> 
    88    <id>tag:modestmaps.com,feed</id> 
    99    <link rel="alternate" type="text/html" hreflang="en" href="http://modestmaps.com/"/> 
    1010    <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> 
    1123    <entry> 
    1224        <title>New Python Tutorials</title> 
  • trunk/processing/sketches/modest_maps/Google.pde

    r489 r523  
    3535abstract class GoogleProvider extends AbstractMapProvider{ 
    3636 
    37   String ROAD_VERSION = "w2.66"; 
    38   String AERIAL_VERSION = "24"; 
    39   String HYBRID_VERSION = "w2t.66"; 
     37  String ROAD_VERSION = "w2.69"; 
     38  String AERIAL_VERSION = "25"; 
     39  String HYBRID_VERSION = "w2t.69"; 
    4040  String TERRAIN_VERSION = "w2p.64"; 
    4141 
  • trunk/processing/src/com/modestmaps/providers/Google.java

    r498 r523  
    1010  public static abstract class GoogleProvider extends AbstractMapProvider { 
    1111   
    12     public static final String ROAD_VERSION = "w2.66"; 
    13     public static final String AERIAL_VERSION = "24"; 
    14     public static final String HYBRID_VERSION = "w2t.66"; 
     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"; 
    1515    public static final String TERRAIN_VERSION = "w2p.64"; 
    1616   
  • trunk/py/ModestMaps/Google.py

    r461 r523  
    2525import random, Tiles 
    2626 
    27 ROAD_VERSION = 'w2.66
    28 AERIAL_VERSION = '24
    29 HYBRID_VERSION = 'w2t.66
     27ROAD_VERSION = 'w2.69
     28AERIAL_VERSION = '25
     29HYBRID_VERSION = 'w2t.69
    3030TERRAIN_VERSION = 'w2p.64' 
    3131