Skip to content

Commit

Permalink
[Rout Me] Turned some methods into c# properties in d1f8568
Browse files Browse the repository at this point in the history
  • Loading branch information
dalexsoto committed Aug 21, 2013
1 parent 00a77ca commit 8447aff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Route-Me/binding/ApiDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1448,15 +1448,15 @@ interface RMDBMapSource{

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

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

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

}

Expand Down

0 comments on commit 8447aff

Please sign in to comment.