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
Post a Comment