GoogleMapsGetMapUrl(String, String, String, String) Method
Builds a Google maps Url given the specified geographic parameters.
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(
string state = "",
string city = "",
string street = "",
string zipcode = ""
)
Public Shared Function GetMapUrl (
Optional state As String = "",
Optional city As String = "",
Optional street As String = "",
Optional zipcode As String = ""
) As String
Dim state As String
Dim city As String
Dim street As String
Dim zipcode As String
Dim returnValue As String
returnValue = GoogleMaps.GetMapUrl(state,
city, street, zipcode)
public:
static String^ GetMapUrl(
String^ state = L"",
String^ city = L"",
String^ street = L"",
String^ zipcode = L""
)
static member GetMapUrl :
?state : string *
?city : string *
?street : string *
?zipcode : string
(* Defaults:
let _state = defaultArg state ""
let _city = defaultArg city ""
let _street = defaultArg street ""
let _zipcode = defaultArg zipcode ""
*)
-> string
No code example is currently available or this language may not be supported.
- state String (Optional)
-
The state name.
- city String (Optional)
-
The city name.
- street String (Optional)
-
The street name.
- zipcode String (Optional)
-
The zip-code.
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=Valencia,+España
Dim url As String = GetGoogleMapsUrl(state:="España", city:="Valencia")
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.