1

我有一个最简单的页面之一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: 标题下绝对没有显示任何内容。

我意识到脚本连接到某些地方,但没有呈现任何内容。

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

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

4

1 回答 1

4

您缺少高度和宽度:

<p:gmap center="41.381542, 2.122893" zoom="15" type="HYBRID" style="width:600px;height:400px" />
于 2012-11-15T04:18:22.947 回答