在koken中生成的Mapbox地图

时间:2014-06-19 09:19:10

标签: javascript mapbox koken

我是一个真正的新手javascript,我需要帮助才能在koken(摄影师的CMS)中实现地图集地图的正确整合

我的想法是做一些像https://www.flickr.com/map这样的事情来在地图上展示图片。

现在我的代码看起来像这样:

<div id='map' style="height: 800px;"></div>
<script>
var map = L.mapbox.map('map', 'mymap')
    .setView([48.895513333333, 2.39237], 6);

//loop to create markers    
<koken:load limit="30" source="contents">
    <koken:loop>

                L.mapbox.featureLayer({
                type: 'Feature',
                    geometry: {
                        type: 'Point',
                        coordinates: [
                          {{ geolocation.longitude }},
                          {{ geolocation.latitude }} 
                        ]
                    },
                    properties: {
                        'title' : '{{ content.title }} <br/> <a href="{{ content.url }}">Voir la photo</a>',
                        'marker-size': 'large',
                        'marker-color': '#CC0001',
                        'marker-symbol': 'camera'
                    }
                }).addTo(map);


    </koken:loop>
</koken:load>
</script>

我的问题是:

  • 我正在做一个循环,在标记后添加标记到地图,这是一个好方法,做一个循环来创建变量更好的方法吗?
  • 我的koken图书馆的某些图片没有{{ geolocation.longitude }}{{ geolocation.latitude }},当此字段为空时,地图不会显示下一个标记。我尝试过if( ) { }进行过滤,但我失败了。就像说我是新手......有人能说明如何实现这个目标吗?
  • 我试图增加koken:加载限制为100,每件事都吓坏了......任何想法?我是否必须等待循环完成才能继续?

非常感谢那些愿意帮助我的人!

1 个答案:

答案 0 :(得分:0)

我本可以这样做的:

<div id='map' style="height: 800px;"></div>
<script>
var map = L.mapbox.map('map', 'mymap')
    .setView([48.895513333333, 2.39237], 6);

// Array containing markers datas
var points = new Array();

//koken loop to populate markers datas
<koken:load limit="30" source="contents">
    <koken:loop>
    points.push({
        cLng:       {{ geolocation.longitude }} +0, // hack to add empty coordinate
        cLat:       {{ geolocation.latitude }} +0,
        title:  "{{ content.title }}",
        url:    "{{ content.url }}"
    });
    </koken:loop>
</koken:load>
// JS Loop thru markers datas to create markers on map
    for(var idx in points) {
        // Only for non empty coordinates
        if((points[idx].cLng != 0) && (points[idx].cLat != 0)) {
                L.mapbox.featureLayer({
                type: 'Feature',
                    geometry: {
                        type: 'Point',
                        coordinates: [
                          points[idx].cLng,
                          points[idx].cLat
                        ]
                    },
                    properties: {
                        'title' : points[idx].title +' <br/> <a href="'+points[idx].url+'">Voir la photo</a>',
                        'marker-size': 'large',
                        'marker-color': '#CC0001',
                        'marker-symbol': 'camera'
                    }
                }).addTo(map);
        }
    }
</script>
P.S:我不知道koken所以不知道你的最后一个问题。