这是我用来显示地图iframe的代码:
<iframe
src="@("http://media.littlecaesars.com/store/mapdev.html?address="+Model.StoreInfo.StoreInfo[0].ShortAddress.City +", "+ Model.StoreInfo.StoreInfo[0].ShortAddress.State +" "+ Model.StoreInfo.StoreInfo[0].ShortAddress.Zip)"
style="width: 100%; height: 400px"
></iframe>
或
<iframe
src="@("http://media.littlecaesars.com/store/mapdev.html?address=Troy,Michigan 48083")"
style="width: 100%; height: 400px"
></iframe>`
但是这使地图完全缩小,如下所示。
我怀疑这个&#34; @(是错误的,因为我没有通过使用静态地址来试图显示我的确切位置。因为我根据输入参数尝试变量地址我原本打算使用&#34; @(。有人可以提供帮助。
[注意:此代码是用cshtml页面编写的]
答案 0 :(得分:0)
iframe看起来运行正常,所以cshtml可能有问题。
<iframe
src="http://media.littlecaesars.com/store/mapdev.html?address=Troy,Michigan%2048083"
style="width: 100%; height: 100%;">
</iframe
&#13;
尝试右键单击iframe并选择&#34;检查元素&#34;。向上滚动,直至找到iframe并查看src
中的内容。