Show / Hide Table of Contents

    Struct GoogleMapOption

    The GoogleMapOption struct used to define the properties that can be set on a GoogleMapView.

    Inherited Members
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetType()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: Tizen.Wearable.CircularUI.Forms
    Assembly: Tizen.Wearable.CircularUI.Forms.dll
    Syntax
    public struct GoogleMapOption

    Constructors

    GoogleMapOption(LatLng, GoogleMapType, Int32, Boolean, Boolean, ZoomControlPosition)

    Constructor a new GoogleMapOption structure

    Declaration
    public GoogleMapOption(LatLng center, GoogleMapType type = GoogleMapType.Roadmap, int zoomLevel = 10, bool visibleZoomControl = false, bool enableGesture = true, ZoomControlPosition controlPosition = ZoomControlPosition.RightBottom)
    Parameters
    Type Name Description
    LatLng center
    GoogleMapType type
    System.Int32 zoomLevel
    System.Boolean visibleZoomControl
    System.Boolean enableGesture
    ZoomControlPosition controlPosition

    Properties

    Center

    Gets or sets a center postion of GoogleMapOption. This value set center of MapView. But getting value not mean current center of MapView because value can't reflect user interaction.

    Declaration
    public LatLng Center { get; set; }
    Property Value
    Type Description
    LatLng

    HasGestureEnabled

    Gets or sets a boolean value that indicates whether zoom and pan interaction is enable.

    Declaration
    public bool HasGestureEnabled { get; set; }
    Property Value
    Type Description
    System.Boolean

    IsZoomControlVisible

    Gets or sets a boolean value that indicates whether zoom control is visible.

    Declaration
    public bool IsZoomControlVisible { get; set; }
    Property Value
    Type Description
    System.Boolean

    MapType

    Gets or sets a Google Map type value of GoogleMapOption.

    Declaration
    public GoogleMapType MapType { get; set; }
    Property Value
    Type Description
    GoogleMapType

    Zoom

    Gets or sets a zoom level of GoogleMapOption. This value set zoom level of MapView. But getting value not mean current zoom level of MapView because value can't reflect user interaction.

    Declaration
    public double Zoom { get; set; }
    Property Value
    Type Description
    System.Double

    ZoomControlPosition

    Gets or sets a boolean value that indicates whether zoom and pan interaction is enable.

    Declaration
    public ZoomControlPosition ZoomControlPosition { get; set; }
    Property Value
    Type Description
    ZoomControlPosition

    Methods

    Equals(Object)

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    System.Object obj
    Returns
    Type Description
    System.Boolean
    Overrides
    System.ValueType.Equals(System.Object)

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    System.Int32
    Overrides
    System.ValueType.GetHashCode()

    ToString()

    Returns the values of GoogleMapOption".

    Declaration
    public override string ToString()
    Returns
    Type Description
    System.String
    Overrides
    System.ValueType.ToString()

    Operators

    Equality(GoogleMapOption, GoogleMapOption)

    Declaration
    public static bool operator ==(GoogleMapOption left, GoogleMapOption right)
    Parameters
    Type Name Description
    GoogleMapOption left
    GoogleMapOption right
    Returns
    Type Description
    System.Boolean

    Inequality(GoogleMapOption, GoogleMapOption)

    Declaration
    public static bool operator !=(GoogleMapOption left, GoogleMapOption right)
    Parameters
    Type Name Description
    GoogleMapOption left
    GoogleMapOption right
    Returns
    Type Description
    System.Boolean
    Back to top Copyright © 2018-2019 Samsung
    Generated by DocFX