C# Class Cimbalino.Phone.Toolkit.Services.MapsDirectionsService

Represents an implementation of the IMapsDirectionsService.
Inheritance: IMapsDirectionsService
Show file Open project: Cimbalino/Cimbalino-Phone-Toolkit

Public Methods

Method Description
Show ( Microsoft.Phone.Tasks.LabeledMapLocation endingLocation ) : void

Shows the Maps application with driving directions displayed for the specified ending location.

Show ( Microsoft.Phone.Tasks.LabeledMapLocation startingLocation, Microsoft.Phone.Tasks.LabeledMapLocation endingLocation ) : void

Shows the Maps application with driving directions displayed for the specified starting and ending locations.

Method Details

Show() public method

Shows the Maps application with driving directions displayed for the specified ending location.
Start and End cannot both be invalid.
public Show ( Microsoft.Phone.Tasks.LabeledMapLocation endingLocation ) : void
endingLocation Microsoft.Phone.Tasks.LabeledMapLocation The ending location for which driving directions are displayed.
return void

Show() public method

Shows the Maps application with driving directions displayed for the specified starting and ending locations.
Start and End cannot both be invalid.
public Show ( Microsoft.Phone.Tasks.LabeledMapLocation startingLocation, Microsoft.Phone.Tasks.LabeledMapLocation endingLocation ) : void
startingLocation Microsoft.Phone.Tasks.LabeledMapLocation The starting location for which driving directions are displayed.
endingLocation Microsoft.Phone.Tasks.LabeledMapLocation The ending location for which driving directions are displayed.
return void