Example #1
0
 public Placemark(string name, string description, string styleUrl, Geometry geometry, TimePrimitive timePrimitive)
 {
     this.name = name;
     this.description = description;
     this.styleUrl = styleUrl;
     this.geometry = geometry;
     this.timePrimitive = timePrimitive;
 }
Example #2
0
 public Placemark(string name, string snippet, int snippetMaxLines, string description, string styleUrl, Geometry geometry, TimePrimitive timePrimitive)
 {
     this.name = name;
     this.snippet = snippet;
     this.snippetMaxLines = snippetMaxLines;
     this.description = description;
     this.styleUrl = styleUrl;
     this.geometry = geometry;
     this.timePrimitive = timePrimitive;
 }
Example #3
0
 public Location(Geometry.CoordinateSet coordinates)
 {
     this.coordinates = coordinates;
 }
Example #4
0
 public Placemark(string name, Geometry geometry)
 {
     this.name = name;
     this.geometry = geometry;
 }
 /// <summary>
 /// 
 /// </summary>
 /// <param name="id"></param>
 /// <param name="geometries"></param>
 public MultiGeometry(string id, Geometry[] geometries)
 {
     this.id = id;
     this.geometries = geometries;
 }