1

我正在尝试为基于 portlet 的 Web 应用程序生成自定义地图,就我目前所见,谷歌地图提供和 i 框架,它采用一些坐标并将它们绘制在地图上。我想根据我存储的一些变量来执行此操作,但我无法将它们包含在 href 或 iframe 中,它只是打印对变量的整个引用,即 #{EntregaListaBean.entregaActual.longitud}。有人知道我的错误是什么吗?我该怎么做才能动态生成它?

这是一段可以工作并使用存储的值的代码:

 <h:outputLabel value="Etapa actual" id="ol3"
                     style="font-weight:bold;"/>
      <h:outputText value="#{EntregaListaBean.entregaActual.etapa}" id="ot4"/>

这是一个根本不起作用的代码:

      <a href="https://maps.google.com/maps?q=#{EntregaListaBean.entregaActual.latitud}",#{EntregaListaBean.entregaActual.longitud}"&t=w&z=17" target="_blank">Ver posicion actual</a>
  <iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?q=#  {EntregaListaBean.entregaActual.latitud},#{EntregaListaBean.entregaActual.longitud}&amp;ie=UTF8&amp;t=w&amp;z=14&amp;ll=#{EntregaListaBean.entregaActual.latitud},-#{EntregaListaBean.entregaActual.longitud}&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?q=#{EntregaListaBean.entregaActual.latitud},#{EntregaListaBean.entregaActual.longitud}&amp;ie=UTF8&amp;t=w&amp;z=14&amp;ll=#{EntregaListaBean.entregaActual.latitud},#{EntregaListaBean.entregaActual.}&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small>     
4

1 回答 1

1

你可以使用 <af:inlineFrame> 标签,它呈现一个 iframe,你可以像你的例子一样使用 EL。

于 2012-12-12T15:48:43.507 回答