地图未使用 gmaps4jsf 刷新

map is not refreshing using gmaps4jsf

我正在使用 gmaps4jsf jar 文件在 google 地图上获取动态标记但是一旦我点击提交按钮然后在网页上获取全部数据,evem 地图也带有动态标记但地图标记在刷新后出现页面。

jsf代码:

<m:map id="map" width="650px" height="450px" latitude="#{map.latitude}" longitude="#{map.longitude}" enableScrollWheelZoom="true" zoom="9">                   
    <m:marker latitude="#{point.latitude}" longitude="#{point.longitude}" >
       <m:htmlInformationWindow htmlText="Click me!" />
    </m:marker>                    
</m:map>

<p:column>
  <p:commandButton value="Display" action="#{map.display}" update="form"/>
</p:column>

jsf 组件刷新正常,唯一问题是 google map..

You should use partiallyTriggered="true" for refresh the google map. as you said you are using gmaps4jsf jar so it will help and i'm updating your code so you can find here

<m:map id="map" partiallyTriggered="true" width="650px" height="450px" latitude="#{map.latitude}" longitude="#{map.longitude}" enableScrollWheelZoom="true" zoom="9">                   
    <m:marker latitude="#{point.latitude}" longitude="#{point.longitude}" >
       <m:htmlInformationWindow htmlText="Click me!" />
    </m:marker>                    
</m:map>