gmaps primefaces问题

问题描述 投票:2回答:1

当我加载页面时,它显示地图,并且仅显示灰色屏幕。当前显示为图像。这是我的代码:

<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"
xmlns:m="http://code.google.com/p/gmaps4jsf/">

<h:head>

<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>

</h:head>

<h:body>


        <h1>Google Map</h1>

        <h:form>

           <f:view  contentType="text/html">    
               <p:gmap center="41.381542,2.122893" zoom="15" type="HYBIRD"
                style="width:600px;height:400px" />
           </f:view>

       </h:form> 
</h:body>

java primefaces jsf-1.2
1个回答
0
投票

您是否尝试在没有f:view标记的情况下在外部定义p:gmap?我想也定义了

<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true" />

没有必要。

© www.soinside.com 2019 - 2024. All rights reserved.