Load multiple geoJSON files

I am a cesium rookie, have some problems. I need loading multiple geojson and they probably have 1 million, but direct loading can cause a crash. so what should I do? asynchronous or web worker(TaskProcessor)? 

Hello,

It is likely that if you are trying to load that many files the browser is running out of memory. You might want to consider converting your GeoJSON into 3D Tiles. 3D tiles is a more web-friendly format and was designed specifically to handle very large datasets like this.

You can learn more about the format in this forum post: https://groups.google.com/d/msg/cesium-dev/tCCooBxpZFU/7hxT_E4pGgAJ

Best,

Hannah

Thanks Hannah, although I can find some introduction about 3dtitles, but I do not know what formats can be converted and how to convert.Is there a URL to explain?

On January 9, 2017 9:48:29 UTC 8 on Monday afternoon, Hannah Pinkos wrote:

Sorry, I don’t know if there is any open source project for converting GeoJSON to 3D Tiles, but you can learn more about the vector data format here: https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/TileFormats/VectorData

Best,

Hannah

Ok,but still thank you