javascript - Loading large amount of data using fusion table not working -


i totally new google fusion table, playing it. have imported data of zip code boundaries google fusion table. using following code drawing boundaries , working fine

var layer = new google.maps.fusiontableslayer({                 query: {                     select: '\'geocodable address\'',                     from: '1m9cwnjrcfwnhceqqkxqcqbzp-da-s9kb8vltpcru',                     where: 'zcta5ce10 in (25231,25501,25003)'                 },                 styles: [{                     polygonoptions: _addstyle                 }]             });             layer.setmap(_this.mapdata.map); 

but problem need pass lot of values in command , when this, fails

where: 'zcta5ce10 in (' + ziplist + ')' 

where ziplist contains 100+ list of comma separated zips. how can draw huge amount of data. jsfiddle: https://jsfiddle.net/r5jb6ew7/ see error in consoles.


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -