GoogleMapsGetMapUrl(Double, Double) Method
Builds a Google maps Url given the specified coordinates.
Namespace: DevCase.ThirdParty.Google.MapsAssembly: DevCase.net48.ThirdParty.GoogleServices (in DevCase.net48.ThirdParty.GoogleServices.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static string GetMapUrl(
double latitude,
double longitude
)
Public Shared Function GetMapUrl (
latitude As Double,
longitude As Double
) As String
Dim latitude As Double
Dim longitude As Double
Dim returnValue As String
returnValue = GoogleMaps.GetMapUrl(latitude,
longitude)
public:
static String^ GetMapUrl(
double latitude,
double longitude
)
static member GetMapUrl :
latitude : float *
longitude : float -> string
No code example is currently available or this language may not be supported.
- latitude Double
-
The latitude coordinates.
- longitude Double
-
The longitude coordinates.
String
The resulting Google maps Url.
This is a code example.
No code example is currently available or this language may not be supported.
' Resulting Url: http://Maps.google.com/?q=39.4767%2C0.3744
Dim url As String = GetGoogleMapsUrl(latitude:=39.4767, longitude:=0.3744)
WebBrowser1.Navigate(url)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.