我有下面的代碼來顯示googlemap使用primefaces。這不是渲染地圖。但是,如果我設置style =「width:600px; height:400px」,它工作正常。如何在瀏覽器中獲得地圖的完整頁面視圖?Primefaces googlemap不渲染
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
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&v=3.4" type="text/javascript"></script>
</h:head>
<h:body>
<f:view contentType="text/html">
<h:form>
<p:gmap center="#{loadBean.centerLatitude},#{loadBean.centerLongitude}" style="width:100%;height:100%" zoom="3" type="HYBRID"/>
</h:form>
</f:view>
</h:body>
</html>
查找範圍爲線索瀏覽器的JavaScript控制檯 – kolossus