...
|
...
|
@@ -33,7 +33,20 @@ |
|
|
Provides access to USA map tiles from Microsoft Virtual Earth. This implementation is incomplete. It
|
|
|
requires a SOAP transaction to validate an access key and obtain a session token. Contact Microsoft
|
|
|
Virtual Earth for further assistance; see contact information in RMVirtualEarthSource.m.
|
|
|
*/
|
|
|
|
|
|
To obtain a Virtual Earth key, see this blog post:
|
|
|
http://blogs.msdn.com/virtualearth/archive/2008/04/29/tracking-virtual-earth-tile-usage.aspx
|
|
|
|
|
|
Microsoft Virtual Earth evangelist: Chris Pendleton, chris.pendleton@microsoft.com
|
|
|
|
|
|
Microsoft Virtual Earth sales: Chris Longo, chris.longo@microsoft.com
|
|
|
|
|
|
This source code sample does not comply with VE terms of service as of March, 2009. To get
|
|
|
into compliance, you'll have to translate the SOAP call described in the above blog post
|
|
|
into Objective-C, and modify the URL template in RMVirtualEarthSource.m. If you manage to get
|
|
|
that working, please contribute your code back to the Route-Me project. When Microsoft was
|
|
|
invited to submit "blessed" sample code in March, 2009, they declined.
|
|
|
*/
|
|
|
@interface RMVirtualEarthSource : RMAbstractMercatorWebSource <RMAbstractMercatorWebSource> {
|
|
|
NSString *maptypeFlag;
|
|
|
NSString *accessKey;
|
...
|
...
|
@@ -41,16 +54,6 @@ |
|
|
NSString *_shortName;
|
|
|
}
|
|
|
|
|
|
// to obtain a Virtual Earth key, see this blog post:
|
|
|
// http://blogs.msdn.com/virtualearth/archive/2008/04/29/tracking-virtual-earth-tile-usage.aspx
|
|
|
// Microsoft Virtual Earth evangelist: Chris Pendleton, chris.pendleton@microsoft.com
|
|
|
// Microsoft Virtual Earth sales: Chris Longo, chris.longo@microsoft.com
|
|
|
//
|
|
|
// This source code sample does not comply with VE terms of service as of March, 2009. To get
|
|
|
// into compliance, you'll have to translate the SOAP call described in the above blog post
|
|
|
// into Objective-C, and modify the URL template in RMVirtualEarthSource.m. If you manage to get
|
|
|
// that working, please contribute your code back to the Route-Me project. When Microsoft was
|
|
|
// invited to submit "blessed" sample code in March, 2009, they declined.
|
|
|
- (id) initWithAerialThemeUsingAccessKey:(NSString *)developerAccessKey;
|
|
|
- (id) initWithRoadThemeUsingAccessKey:(NSString *)developerAccessKey;
|
|
|
- (id) initWithHybridThemeUsingAccessKey:(NSString *)developerAccessKey;
|
...
|
...
|
|