Collection
지도 내 다양한 형식의 배열 데이터를 사용하기 위한 API 입니다.
var data_array = new Module.Collection();properties
Name
Type
Description
Function
GetCount() → number
var array = new Module.Collection();
var count = array.GetCount();extend(elements) → void
Name
Type
Description
var array = new Module.Collection();
var items = [
new Module.JSVector3D(126.77599416643791, 35.02714918251881, 34.293371013365686),
new Module.JSVector3D(126.78374897355015, 35.03318059967435, 35.54886215366423),
new Module.JSVector3D(126.79212321528658, 35.03203801070689, 25.686076117679477),
new Module.JSVector3D(126.79408620811664, 35.019259090964134, 29.999966450035572)
];
array.extend(items);add(element) → number
Name
Type
Description
update(index, item) → void
Name
Type
Description
switch(index1, index2) → void
Name
Type
Description
pop() → object
clear()
item(index) → object
Name
Type
Description
Last updated