Sub SetGoogleMapPadding(gMapView As GoogleMap,gTop As Float,gLeft As Float,gBottom As Float,gRight As Float)
Try
Dim NO As NativeObject = Me
NO.RunMethod("SetMapPadding:::::", Array As Object(gMapView,gTop,gLeft,gBottom,gRight))
Return
Catch
'Log(LastException)
Return
End Try
End Sub
#If OBJC
- (void) SetMapPadding:(GMSMapView *)gMapView :(float)gTop :(float)gLeft :(float)gBottom :(float)gRight {
UIEdgeInsets mapInsets = UIEdgeInsetsMake(gTop, gLeft, gBottom, gRight);
gMapView.padding = mapInsets;
}
#End If