BaseGpsReceiverShowOnGoogleMaps(Double, Double, Int32) Method |
Displays the specified position on google maps in the default browser.
Namespace: ZylSoft.GpsAssembly: ZylGpsReceiver (in ZylGpsReceiver.dll) Version: 3.32.9621.18621
XMLNS for XAML: Not mapped to an xmlns.
Syntaxpublic static bool ShowOnGoogleMaps(
double latitude,
double longitude,
int zoom = 15
)
Public Shared Function ShowOnGoogleMaps (
latitude As Double,
longitude As Double,
Optional zoom As Integer = 15
) As Boolean
Dim latitude As Double
Dim longitude As Double
Dim zoom As Integer
Dim returnValue As Boolean
returnValue = BaseGpsReceiver.ShowOnGoogleMaps(latitude,
longitude, zoom)
public:
static bool ShowOnGoogleMaps(
double latitude,
double longitude,
int zoom = 15
)
static member ShowOnGoogleMaps :
latitude : float *
longitude : float *
?zoom : int
(* Defaults:
let _zoom = defaultArg zoom 15
*)
-> bool public static boolean ShowOnGoogleMaps(
double latitude,
double longitude,
int zoom = 15
)
public static function ShowOnGoogleMaps(
latitude : double,
longitude : double,
zoom : int
) : boolean
ZylSoft.Gps.BaseGpsReceiver.ShowOnGoogleMaps = function(latitude, longitude, zoom);
STATIC METHOD ShowOnGoogleMaps(
latitude AS REAL8,
longitude AS REAL8,
zoom AS LONG := 15
) AS LOGIC
No code example is currently available or this language may not be supported.
Parameters
- latitude Double
- Latitude of position.
- longitude Double
- Longitude of position.
- zoom Int32 (Optional)
- Zoom level.
Return Value
Booleantrue, if succeeded.
See Also