123456789101112131415161718192021222324252627282930313233343536 |
- define("dojox/geo/openlayers/Geometry", ["dojo/_base/kernel", "dojo/_base/declare"], function(dojo, declare){
- return declare("dojox.geo.openlayers.Geometry", null, {
-
-
-
-
-
-
-
-
-
-
-
-
- coordinates : null,
-
-
-
-
-
-
- shape : null,
- constructor : function(coords){
-
-
-
-
-
- this.coordinates = coords;
- }
- });
- });
|