public unsafe global::Com.Baidu.Mapapi.Map.MarkerOptions InvokePosition(global::Com.Baidu.Mapapi.Model.LatLng p0)
 {
     if (id_position_Lcom_baidu_mapapi_model_LatLng_ == IntPtr.Zero)
     {
         id_position_Lcom_baidu_mapapi_model_LatLng_ = JNIEnv.GetMethodID(class_ref, "position", "(Lcom/baidu/mapapi/model/LatLng;)Lcom/baidu/mapapi/map/MarkerOptions;");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         global::Com.Baidu.Mapapi.Map.MarkerOptions __ret = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Map.MarkerOptions> (JNIEnv.CallObjectMethod(Handle, id_position_Lcom_baidu_mapapi_model_LatLng_, __args), JniHandleOwnership.TransferLocalRef);
         return(__ret);
     } finally {
     }
 }
 public unsafe global::Com.Baidu.Mapapi.Map.MarkerOptions InvokeExtraInfo(global::Android.OS.Bundle p0)
 {
     if (id_extraInfo_Landroid_os_Bundle_ == IntPtr.Zero)
     {
         id_extraInfo_Landroid_os_Bundle_ = JNIEnv.GetMethodID(class_ref, "extraInfo", "(Landroid/os/Bundle;)Lcom/baidu/mapapi/map/MarkerOptions;");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         global::Com.Baidu.Mapapi.Map.MarkerOptions __ret = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Map.MarkerOptions> (JNIEnv.CallObjectMethod(Handle, id_extraInfo_Landroid_os_Bundle_, __args), JniHandleOwnership.TransferLocalRef);
         return(__ret);
     } finally {
     }
 }
 public unsafe global::Com.Baidu.Mapapi.Map.MarkerOptions InvokeIcon(global::Com.Baidu.Mapapi.Map.BitmapDescriptor p0)
 {
     if (id_icon_Lcom_baidu_mapapi_map_BitmapDescriptor_ == IntPtr.Zero)
     {
         id_icon_Lcom_baidu_mapapi_map_BitmapDescriptor_ = JNIEnv.GetMethodID(class_ref, "icon", "(Lcom/baidu/mapapi/map/BitmapDescriptor;)Lcom/baidu/mapapi/map/MarkerOptions;");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         global::Com.Baidu.Mapapi.Map.MarkerOptions __ret = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Map.MarkerOptions> (JNIEnv.CallObjectMethod(((global::Java.Lang.Object) this).Handle, id_icon_Lcom_baidu_mapapi_map_BitmapDescriptor_, __args), JniHandleOwnership.TransferLocalRef);
         return(__ret);
     } finally {
     }
 }
 public unsafe global::Com.Baidu.Mapapi.Map.MarkerOptions InvokeAnimateType(global::Com.Baidu.Mapapi.Map.MarkerOptions.MarkerAnimateType p0)
 {
     if (id_animateType_Lcom_baidu_mapapi_map_MarkerOptions_MarkerAnimateType_ == IntPtr.Zero)
     {
         id_animateType_Lcom_baidu_mapapi_map_MarkerOptions_MarkerAnimateType_ = JNIEnv.GetMethodID(class_ref, "animateType", "(Lcom/baidu/mapapi/map/MarkerOptions$MarkerAnimateType;)Lcom/baidu/mapapi/map/MarkerOptions;");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         global::Com.Baidu.Mapapi.Map.MarkerOptions __ret = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Map.MarkerOptions> (JNIEnv.CallObjectMethod(((global::Java.Lang.Object) this).Handle, id_animateType_Lcom_baidu_mapapi_map_MarkerOptions_MarkerAnimateType_, __args), JniHandleOwnership.TransferLocalRef);
         return(__ret);
     } finally {
     }
 }
        public unsafe global::Com.Baidu.Mapapi.Map.MarkerOptions InvokeTitle(string p0)
        {
            if (id_title_Ljava_lang_String_ == IntPtr.Zero)
            {
                id_title_Ljava_lang_String_ = JNIEnv.GetMethodID(class_ref, "title", "(Ljava/lang/String;)Lcom/baidu/mapapi/map/MarkerOptions;");
            }
            IntPtr native_p0 = JNIEnv.NewString(p0);

            try {
                JValue *__args = stackalloc JValue [1];
                __args [0] = new JValue(native_p0);
                global::Com.Baidu.Mapapi.Map.MarkerOptions __ret = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Map.MarkerOptions> (JNIEnv.CallObjectMethod(Handle, id_title_Ljava_lang_String_, __args), JniHandleOwnership.TransferLocalRef);
                return(__ret);
            } finally {
                JNIEnv.DeleteLocalRef(native_p0);
            }
        }
        public unsafe global::Com.Baidu.Mapapi.Map.MarkerOptions InvokeIcons(global::System.Collections.Generic.IList <global::Com.Baidu.Mapapi.Map.BitmapDescriptor> p0)
        {
            if (id_icons_Ljava_util_ArrayList_ == IntPtr.Zero)
            {
                id_icons_Ljava_util_ArrayList_ = JNIEnv.GetMethodID(class_ref, "icons", "(Ljava/util/ArrayList;)Lcom/baidu/mapapi/map/MarkerOptions;");
            }
            IntPtr native_p0 = global::Android.Runtime.JavaList <global::Com.Baidu.Mapapi.Map.BitmapDescriptor> .ToLocalJniHandle(p0);

            try {
                JValue *__args = stackalloc JValue [1];
                __args [0] = new JValue(native_p0);
                global::Com.Baidu.Mapapi.Map.MarkerOptions __ret = global::Java.Lang.Object.GetObject <global::Com.Baidu.Mapapi.Map.MarkerOptions> (JNIEnv.CallObjectMethod(Handle, id_icons_Ljava_util_ArrayList_, __args), JniHandleOwnership.TransferLocalRef);
                return(__ret);
            } finally {
                JNIEnv.DeleteLocalRef(native_p0);
            }
        }