Skip to content

Commit

Permalink
Added support for DBMap (offline maps)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgomez committed Jul 22, 2013
1 parent 035c9e5 commit d1f8568
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Route-Me/binding/ApiDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1437,4 +1437,28 @@ interface RMUserLocation {
}

#endregion

#region DBMap

[BaseType (typeof(RMAbstractMercatorTileSource))]
interface RMDBMapSource{
//- (id)initWithPath:(NSString *)path;
[Export ("initWithPath:")]
IntPtr Constructor (string path);

//- (CLLocationCoordinate2D)topLeftOfCoverage;
[Export("topLeftOfCoverage")]
CLLocationCoordinate2D TopLeftOfCoverage();

//- (CLLocationCoordinate2D)bottomRightOfCoverage;
[Export("bottomRightOfCoverage")]
CLLocationCoordinate2D BottomRightOfCoverage();

//- (CLLocationCoordinate2D)centerOfCoverage;
[Export("centerOfCoverage")]
CLLocationCoordinate2D CenterOfCoverage();

}

#endregion
}

0 comments on commit d1f8568

Please sign in to comment.