9 lines
295 B
JavaScript
9 lines
295 B
JavaScript
|
//>>built
|
||
|
define("dojox/geo/openlayers/LineString",["dojo/_base/kernel","dojo/_base/declare","dojox/geo/openlayers/Geometry"],function(_1,_2,_3){
|
||
|
return _2("dojox.geo.openlayers.LineString",_3,{setPoints:function(p){
|
||
|
this.coordinates=p;
|
||
|
},getPoints:function(){
|
||
|
return this.coordinates;
|
||
|
}});
|
||
|
});
|