コード例 #1
0
    public void BtnLastCallFullWeb()
    {
        lasturl = inputlast.text;

        Debug.Log("Full Screen WebView");
        PopupWebView.FullWebView(lasturl);
    }
コード例 #2
0
    public void BtnFullWeb()
    {
        url = inputUrl.text;

        Debug.Log("Full Screen WebView");
        PopupWebView.FullWebView(url);
    }
コード例 #3
0
    public void BtnLastCustomWeb()
    {
        lasturl = inputlast.text;
        width   = int.Parse(inputWidth.text);
        height  = int.Parse(inputHeight.text);

        Debug.Log("Custom Screen WebView");
        PopupWebView.CustomWebView(lasturl, false, width, height);
    }
コード例 #4
0
 public void BtnMapThomas()
 {
     url = "https://google.com/maps/search/?api=1&query=fort+marlborough+bengkulu";
     Debug.Log("Full Screen WebView");
     PopupWebView.FullWebView(url);
 }