1

我正在使用 gmaps4jsf jar 并尝试在地图上显示标记。标记显示正常,但没有自动缩放功能。每次我需要改变缩放值时,gmaps4jsf 中有什么选项可以让我们获得自动缩放功能吗?

<m:map latitude="10.132567" longitude="10.132567" height="400px" width="400px" zoom="6">
    <ui:repeat var="p" value="#{pointBean.points2}" varStatus="status" offset="0" step="1" size="#{pointBean.points2.size()}">
         <m:marker latitude="#{p.latitude}" longitude="#{p.longitude}" >
             <m:htmlInformationWindow htmlText="#{p.latitude}-#{p.longitude}" />
          </m:marker>
    </ui:repeat>                  
</m:map>

提前致谢!!!

4

1 回答 1

0

您需要autoReshape="true"输入地图标签,例如,

<m:map autoReshape="true">.....</map>

autoReshape 只是在地图上调整标记,你只会得到标记显示。

于 2015-12-23T11:42:21.597 回答