jsf ページ内で Gmap を開きたいのですが、これらのサンプルを試しましたが、うまくいきませんでした:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:head>
<script src="http://maps.google.com/maps/api/js?sensor=false"
type="text/javascript"></script>
</h:head>
<body>
<ui:composition template="/WEB-INF/template/template.xhtml">
<ui:define name="content">
<p:commandButton type="button" icon="ui-icon-pin-s" value="Show Map"
onclick="dlg.show()" />
<p:dialog widgetVar="dlg" width="625" height="400" modal="true">
<p:gmap center="41.381542, 2.122893" zoom="15" type="HYBRID"
style="width:600px;height:400px" widgetVar="mymap" />
</p:dialog>
</ui:define>
</ui:composition>
</body>
</html>