PrimeFaces Gmap无法渲染(在最简单的示例中)

时间:2012-11-15 02:41:38

标签: jsf jsf-2 primefaces

我有一个最简单的页面,上面有p:gmap

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:p="http://primefaces.org/ui">

    <f:view>
        <h:head>
            <script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
        </h:head>

        <h:body>
            Map:
            <p:gmap center="49.967109, 8.80198" zoom="15" type="HYBRID" />
        </h:body>
    </f:view>

</html>

然而,这在Map:heading。

下完全没有显示

我意识到脚本连接到某些地方,但没有渲染。

问:有什么问题,你如何解决这个问题?

PS:我正在使用所有版本的PF 3.x ...交换它们没有帮助。

1 个答案:

答案 0 :(得分:4)

您缺少高度和宽度:

<p:gmap center="41.381542, 2.122893" zoom="15" type="HYBRID" style="width:600px;height:400px" />