|
MapQuest Map SDK for iOS
1.1
Deploy maps and map functions natively in iOS applications for the iPhone and iPad
|
Inherits <NSObject>.
Instance Methods | |
| (void) | - getRouteWithStartAddress:endAddress: |
| (void) | - getRouteWithStartCoordinate:endCoordinate: |
Properties | |
| MQMapView * | mapView |
| The mapview upon which the route will be rendered. | |
| BOOL | bestFitRoute |
| Should the map be repositioned to a region that best fits the route. Default is YES. | |
| NSArray * | maneuvers |
| An array of MQManeuver objects sequenced. | |
| id< MQRouteDelegate > | delegate |
| NSString * | rawXML |
| The unparsed XML response for the route requeset. | |
| MQRouteType | routeType |
| The type of route to request. Default is 'fastest'. | |
A non-reusable route request. Init and configure the MQRoute object, then call one of the getRoute methods to initiate the request
| - (void) getRouteWithStartAddress: | (NSString *) | startAddress | |
| endAddress: | (NSString *) | endAddress | |
Initiate a route request using starte and end addresses.
| startAddress | The beginning point of the route |
| endAddress | The destination. |
| - (void) getRouteWithStartCoordinate: | (CLLocationCoordinate2D) | startCoordinate | |
| endCoordinate: | (CLLocationCoordinate2D) | endCoordinate | |
Initiate a route request using starte and end coordinates.
| startCoordinate | The beginning point of the route |
| endCoordinate | The destination. |
|
readwriteatomicassign |
The delegate that will be informed that a route is available or that an error occured
1.8.2