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>
前もって感謝します!!!