如何在jstl + javascript中使用foreach?

时间:2016-01-17 01:50:23

标签: javascript java jsp tomcat jstl

我尝试在Google地图中添加图钉。我有带有坐标和名称的集合${list}项。我想要的每个人都放在地图上。我写了一些代码:

<script>
function initMap() {
<c:forEach items="${list}" var="item">
    var cairo = {lat: ${item.geometry.lat}, lng: ${item.geometry.lng}};
    var map = new google.maps.Map(document.getElementById('map'), {
        scaleControl: true,
        center: cairo,
        zoom: 10
    });
    var infowindow = new google.maps.InfoWindow;
    infowindow.setContent('${item.name}');
</c:forEach>
}

但我的代码不正确。这仅添加地图集合中的一个(最后一个)项目。

请帮忙。

2 个答案:

答案 0 :(得分:0)

您可能需要创建一个标记点​​来映射

function initMap() {

var cairo =new google.maps.LatLng(38.54,77.02); 

var map = new google.maps.Map(document.getElementById('map'), {
    scaleControl: true,
    center: cairo,
    zoom: 10
});

<c:forEach items="${list}" var="item">

var infowindow = new google.maps.InfoWindow;

infowindow.setContent('${item.name}');

var myLatlng = new google.maps.LatLng(${item.geometry.lat}, ${item.geometry.lng});

 var marker = new google.maps.Marker({
    position : myLatlng,
    map : map,
    icon : 'img/icon.png' 
    title:${item.name}
   }); 
   google.maps.event.addListener(marker, 'click', function() {  
    // map.setZoom(15);  
    // map.setCenter(marker.getPosition());  
     infowindow.open(map, marker);  
    });  
  </c:forEach>

 }

答案 1 :(得分:0)

我用过这种方式并且有效。我希望有所帮助。

 <script type="text/javascript">
    /* Markers information
       KONUME & KONUMB = latLng & numbers in database
       numbers can be left unquoted. */
    var markers = [
       <c:forEach var="row" items="${result.rows}">
                   ['<c:out value="${row.aciklama}" />',
                     <c:out value="${row.KONUME}" />,
                     <c:out value="${row.KONUMB}" />,
                     <c:out value="${row.EVID}" />,
                    '<c:out value="${row.aptadi}" />',
                    '<c:out value="${row.mahalle}" />',
                    '<c:out value="${row.sokak}" />',
                    '<c:out value="${row.durumu}" />',
                    '<c:out value="${row.metrekare}" />',
                    '<c:out value="${row.fiyat}" />',
                    '<c:out value="${row.odasayisi}" />'],
        </c:forEach>   ];  

     var map;
     /*<body onload="initialize()">*/
     function initialize() {

        var latlng= new google.maps.LatLng(38.675124,39.217375);

        var mapOptions = {
          center: latlng,
          zoom: 15,
          mapTypeId: google.maps.MapTypeId.HYBRID
        };
        map = new google.maps.Map(document.getElementById('map_canvas'),
            mapOptions);
        for( i = 0; i < markers.length; i++ ) {
           var position = new google.maps.LatLng(markers[i][1],markers[i][2]);

           marker = new google.maps.Marker({
           position: position,
           map: map,
           title: markers[i][0],
           icon:image
        });
     }
</script>

MyProjects

JSP + Google Maps API

JSP + Angular + Google Maps API

  

相当简单,是吗?请注意,您仍然需要围绕变量的单引号;不是用于Java / JSP,而是用于JavaScript!只有纯数字或布尔变量可以不加引号。

另见Java/JSP/JSF and JavaScript