merge(collection2)
Merges two collections into one. The result has all the elements that were in either collection.
Elements from the first collection will have IDs prefixed with "1_" and elements from the second collection will have IDs prefixed with "2_".
Note: If many collections need to be merged, consider placing them all in a collection and using FeatureCollection.flatten() instead. Repeated use of FeatureCollection.merge() will result in increasingly long element IDs and reduced performance.
将两个集合合并成一个。其结果是拥有两个集合中的所有元素。
第一个集合的元素的ID前缀为 "1_",第二个集合的元素的ID前缀为 "2_"。
注意:如果有很多集合需要合并,可以考虑把它们都放在一个集合中,然后用FeatureCollection.f