预加载(预过滤)指向Polymaps API

时间:2011-09-11 12:27:31

标签: javascript map filter geojson

我正在使用Polymaps JS lybrary创建一个项目。我必须计划大约200,000点。将点加载到浏览器中需要一段时间,然后导航非常缓慢。

我已经阅读了文档,在将数据添加到页面之前,没有选择过滤GeoJson。

有人可以建议一个更好的方法:

var po = org.polymaps;
var map = po.map()
.container(document.body.appendChild(po.svg("svg")))
.center({lat: 45.468318, lon: 9.1709})
.zoom(13)
.add(po.interact());

//Skinning the map
map.add(po.image()
.url(po.url("http://{S}tile.cloudmade.com"
+ "/1a1b06b230af4efdbb989ea99e9841af" // http://cloudmade.com/register
+ "/998/256/{Z}/{X}/{Y}.png")
.hosts(["a.", "b.", "c.", ""])));

//Importing the geoJSON
map.add(po.geoJson()
.url("test_4sq.json")
.id("streets")
.on("load", loadAreas)
.tile(false));

map.add(po.compass()
.pan("none"));

// This function loads all the data and then do the filtering (very sluggish method) 
function loadAreas(obj) {
for (var i = 0; i < obj.features.length; i++) {
    var f = obj.features[i];
    var e = obj.features[i].element;
    var p = obj.features[i].data.properties;
    e.setAttribute('r', 4);
    e.setAttribute('id', f.data.id);
    e.setAttribute('title', p.venueName);
    //console.log(e);

    // Displaying the data in August (month propriety = '8')
    if (p.month != "08")
         console.log(e); 
    else 
        e.setAttribute('display', 'none');
} 
} 

2 个答案:

答案 0 :(得分:0)

使用geoJSON平铺服务器似乎是使用这么多元素的唯一方法。查看TileStache。这也可能有用:http://goalfinch.com/blog/2011/03/building-interactive-maps-with-polymaps-tilestache-and-mongodb-part-2/

答案 1 :(得分:0)

我想出了如何让脚本更快。 首先通过localhost或server启动应用程序可以让所有工作更快。 我总是通过文件打开应用程序(file:///pathTo_file/index.html)!那是错的。最好使用服务器(www.pathTo_file.com/或localhost://pathTo_file/index.html) 其次,我试图缩小导入的json。我留下了很多空格和换行符以提高可读性,但加载非常繁重所以我删除了所有这些无用的字符。 第三,我只在用户使用daypicker时才加载文件。通过这种方式,应用程序首先加载所有切片,然后第二次加载用户选择的数据。

以下是somone感兴趣的代码示例。

$(document).ready(function() {



// DAY AND MONTH CORRECTION RELATED TO FILENAME
function addZero(num){
    console.log("Function launched: addZero")
    parseInt(num);
    if(num>=1 && num<=9){
            num="0"+num;
    }   
    return num;
} 

$("#datepicker").datepicker({
    dateFormat: 'yy/mm/dd',
    inline: true,
    minDate: new Date(2011, 8 - 1, 20),
    maxDate:new Date(2011, 12 - 1, 31),
    altField: '#datepicker_value',
      onSelect: function(){
        var selDay = $("#datepicker").datepicker('getDate').getDate();                 
        var selMonth = $("#datepicker").datepicker('getDate').getMonth() + 1;             
        var selYear = $("#datepicker").datepicker('getDate').getFullYear();


//PLOTTING THE MAP WITH THE USER'S SELECTION - DATEPICKER PARAMETERS -
plotMap(addZero(selDay), addZero(selMonth));
    }
});
//INITIALISATING THE DATEPICKER 
$("#datepicker").datepicker('setDate', new Date());


    // JSON DATA IMPORT
    var po = org.polymaps;
    var map = po.map()
            .container(document.body.appendChild(po.svg("svg")))
            .center({lat: 45.468318, lon: 9.1709})
            .zoom(13)
            .add(po.interact());

    map.add(po.image()
            .url(po.url("http://{S}tile.cloudmade.com"
            + "/1a1b06b230af4efdbb989ea99e9841af" // http://cloudmade.com/register
            + "/998/256/{Z}/{X}/{Y}.png")
            .hosts(["a.", "b.", "c.", ""])));

    function plotMap(day, month){
        var jsonUrl = "json/4sq_"+day+"_"+month+"_min.json";
        map.add(po.geoJson()
            .url(jsonUrl)
            .on("load", loadSingleEvents));

            console.log("Ho caricato il file:" + jsonUrl);
    };


    map.add(po.compass()
            .pan("none"));


//LOADING THE DATA
    function loadSingleEvents(obj) {
        console.log("Function launched: loadSingleEvents")
        singleEvents=true;

        $.each (obj.features, function (i, feat){
            var point = feat.element;
            var propriety = feat.data.properties;
            point.setAttribute('r', 3.5);
            point.setAttribute('id', feat.data.id);
            point.setAttribute('data-venueName', propriety.venueName);
            point.setAttribute('data-hour', propriety.hour);        
        }); 
        console.log("Numero di Elementi visualizzati: (dovrebbe essere sui 3500) "+ obj.features.length);           

    }



});