我試圖嵌入谷歌地圖的iFrame在我的應用程序時:左上角白色邊框在web瀏覽器使用的iFrame
Dim Map As String
Map = "<html>" & _
"<body>" & _
"<div style =""overflow:auto;"">" & _
"<iframe " & _
"Width = """ & webMap.Width & """ " & _
"Height = """ & webMap.Height & """ " & _
"frameBorder=""0"" " & _
"style=""border:0;"" " & _
"""padding-top:0;"" " & _
"""margin-top:0;"" " & _
"""border-top:none;"" " & _
"src=""https://www.google.com/maps/embed/v1/search?key=[Key]&q=[Address]""" & _
"allowfullscreen>" & _
"</iframe>" & _
"</div>" & _
"</body>" & _
"<html>"
webMap.DocumentText = Map
的地圖總是有白邊頂部和左側。我已經嘗試將控件上的邊距設置爲'0',並且如您所見,我嘗試調整邊框的邊框/邊距。這是什麼造成的?瀏覽到普通網址不會產生邊框。