function PathLine(arrayPts, color, width, title, desc, layer){
	this.arrayPts=arrayPts;
	this.color = color;
	this.width = width;
	this.title = title;
	this.desc = desc;
	this.layer = layer;
}