summaryrefslogtreecommitdiff
path: root/chimere/templates/search/search_js.html
blob: 7a793f016ae5e49baa1e0953929eb712ed142c71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<script type='text/javascript'>
$(function(){
    // clean checked categories
    $('.subcategory').each(function(){ $(this).removeClass('selected'); });
    $('.subcategory input[type=checkbox]').attr('checked', false);

    var geo_objects = [];
    {% for result in page.object_list %}{% if result %}
    var c_lst ={{result.object.getGeoJSON|safe}};
    for (idx in c_lst){
        geo_objects.push(c_lst[idx]);
    }{% endif %}{% endfor %}
    var geo_features = {};
    for (idx=0 ; idx < geo_objects.length ; idx++){
        var c_idx = geo_objects[idx].properties.pk;
        if (search_result.indexOf(c_idx) == -1){
            search_result.push(c_idx);
            geo_features[c_idx] = $('#main-map').chimere('addMarker',
                                                         geo_objects[idx]);
        }
    }
    if (geo_objects.length){
        window.setTimeout(function(){$("#main-map").chimere("zoomToMarkerExtent")}, 500);
    }
});
</script>