C# 클래스 GoogleMaps.LocationServices.GoogleLocationService

상속: ILocationService
파일 보기 프로젝트 열기: sethwebster/GoogleMaps.LocationServices 1 사용 예제들

Private Properties

프로퍼티 타입 설명
ParseUS double

공개 메소드들

메소드 설명
GetAddressFromLatLang ( double latitude, double longitude ) : GoogleMaps.LocationServices.AddressData

Translates a Latitude / Longitude into an address using Google Maps api

GetDirections ( GoogleMaps.LocationServices.AddressData originAddress, GoogleMaps.LocationServices.AddressData destinationAddress ) : GoogleMaps.LocationServices.Directions

Gets the directions.

GetDirections ( double latitude, double longitude ) : GoogleMaps.LocationServices.Directions

Gets the directions.

GetLatLongFromAddress ( GoogleMaps.LocationServices.AddressData address ) : GoogleMaps.LocationServices.MapPoint

Gets the latitude and longitude that belongs to an address.

GetLatLongFromAddress ( string address ) : GoogleMaps.LocationServices.MapPoint

Gets the latitude and longitude that belongs to an address.

GetRegionFromLatLong ( double latitude, double longitude ) : GoogleMaps.LocationServices.Region

Translates a Latitude / Longitude into a Region (state) using Google Maps api

GoogleLocationService ( ) : System

Initializes a new instance of the GoogleLocationService class. Default calling the API over regular HTTP (not HTTPS).

GoogleLocationService ( bool useHttps ) : System

Initializes a new instance of the GoogleLocationService class.

비공개 메소드들

메소드 설명
ParseUS ( string value ) : double

메소드 상세

GetAddressFromLatLang() 공개 메소드

Translates a Latitude / Longitude into an address using Google Maps api
public GetAddressFromLatLang ( double latitude, double longitude ) : GoogleMaps.LocationServices.AddressData
latitude double
longitude double
리턴 GoogleMaps.LocationServices.AddressData

GetDirections() 공개 메소드

Gets the directions.
public GetDirections ( GoogleMaps.LocationServices.AddressData originAddress, GoogleMaps.LocationServices.AddressData destinationAddress ) : GoogleMaps.LocationServices.Directions
originAddress GoogleMaps.LocationServices.AddressData From address.
destinationAddress GoogleMaps.LocationServices.AddressData To address.
리턴 GoogleMaps.LocationServices.Directions

GetDirections() 공개 메소드

Gets the directions.
public GetDirections ( double latitude, double longitude ) : GoogleMaps.LocationServices.Directions
latitude double The latitude.
longitude double The longitude.
리턴 GoogleMaps.LocationServices.Directions

GetLatLongFromAddress() 공개 메소드

Gets the latitude and longitude that belongs to an address.
public GetLatLongFromAddress ( GoogleMaps.LocationServices.AddressData address ) : GoogleMaps.LocationServices.MapPoint
address GoogleMaps.LocationServices.AddressData The address.
리턴 GoogleMaps.LocationServices.MapPoint

GetLatLongFromAddress() 공개 메소드

Gets the latitude and longitude that belongs to an address.
public GetLatLongFromAddress ( string address ) : GoogleMaps.LocationServices.MapPoint
address string The address.
리턴 GoogleMaps.LocationServices.MapPoint

GetRegionFromLatLong() 공개 메소드

Translates a Latitude / Longitude into a Region (state) using Google Maps api
public GetRegionFromLatLong ( double latitude, double longitude ) : GoogleMaps.LocationServices.Region
latitude double
longitude double
리턴 GoogleMaps.LocationServices.Region

GoogleLocationService() 공개 메소드

Initializes a new instance of the GoogleLocationService class. Default calling the API over regular HTTP (not HTTPS).
public GoogleLocationService ( ) : System
리턴 System

GoogleLocationService() 공개 메소드

Initializes a new instance of the GoogleLocationService class.
public GoogleLocationService ( bool useHttps ) : System
useHttps bool Indicates whether to call the Google API over HTTPS or not.
리턴 System