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

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

Public Methods

Method Description
Show ( GeoCoordinate center ) : void

Shows the Maps application centered on the specified location.

Show ( GeoCoordinate center, double zoomLevel ) : void

Shows the Maps application centered on the specified location, with the specified initial zoom level.

Show ( GeoCoordinate center, string searchTerm, double zoomLevel ) : void

Shows the Maps application centered on the specified location, with locations matching the search term tagged on the map, and the specified initial zoom level.

Show ( string searchTerm ) : void

Shows the Maps application centered on the current user location, with locations matching the specified search term tagged on the map.

Show ( string searchTerm, double zoomLevel ) : void

Shows the Maps application centered on the current user location, with locations matching the search term tagged on the map, and the specified initial zoom level.

Method Details

Show() public method

Shows the Maps application centered on the specified location.
Center and SearchTerm cannot both be empty.
public Show ( GeoCoordinate center ) : void
center GeoCoordinate The location that will be used as the center point for the map.
return void

Show() public method

Shows the Maps application centered on the specified location, with the specified initial zoom level.
Center and SearchTerm cannot both be empty.
public Show ( GeoCoordinate center, double zoomLevel ) : void
center GeoCoordinate The location that will be used as the center point for the map.
zoomLevel double The initial zoom level of the map.
return void

Show() public method

Shows the Maps application centered on the specified location, with locations matching the search term tagged on the map, and the specified initial zoom level.
Center and SearchTerm cannot both be empty.
public Show ( GeoCoordinate center, string searchTerm, double zoomLevel ) : void
center GeoCoordinate The location that will be used as the center point for the map.
searchTerm string The search term that is used to find and tag locations on the map.
zoomLevel double The initial zoom level of the map.
return void

Show() public method

Shows the Maps application centered on the current user location, with locations matching the specified search term tagged on the map.
Center and SearchTerm cannot both be empty.
public Show ( string searchTerm ) : void
searchTerm string The search term that is used to find and tag locations on the map.
return void

Show() public method

Shows the Maps application centered on the current user location, with locations matching the search term tagged on the map, and the specified initial zoom level.
Center and SearchTerm cannot both be empty.
public Show ( string searchTerm, double zoomLevel ) : void
searchTerm string The search term that is used to find and tag locations on the map.
zoomLevel double The initial zoom level of the map.
return void