C# Класс Cimbalino.Phone.Toolkit.Services.MapsService

Represents an implementation of the IMapsService.
Наследование: IMapsService
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

Show() публичный Метод

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.
Результат void

Show() публичный Метод

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.
Результат void

Show() публичный Метод

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.
Результат void

Show() публичный Метод

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.
Результат void

Show() публичный Метод

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.
Результат void