positionsection.js
691 Bytes
var EditSectionObj = function () {
/** 定义修改路段对象 */
var Section={};
var SectionObj = {
/** 获取修改路段集合对象 @return:<Section:修改路段对象> */
getEitdSection : function() {
return Section;
},
/** 设置修改路段集合对象为空 */
setEitdSection : function(sc) {
Section = sc;
},
/** 设置修改路段集合对象折线百度坐标集合属性值 @param:<bsectionVector:折线百度坐标集合) */
setEitdBsectionVector : function(bsectionVector) {
Section.sectionBsectionVector = bsectionVector;
}
}
return SectionObj;
}();