Пример #1
0
 public GeoJSON_PointFeature_Feature(double Latitude, double Longitude, String Content)
 {
     type       = "Feature";
     properties = new GeoJSON_PointFeature_Properties(Content);
     geometry   = new GeoJSON_PointFeature_Geometry(Latitude, Longitude);
 }
Пример #2
0
		public GeoJSON_PointFeature_Feature(double Latitude, double Longitude, String Content)
		{
			type = "Feature";
			properties = new GeoJSON_PointFeature_Properties(Content);
			geometry = new GeoJSON_PointFeature_Geometry(Latitude,Longitude);
		}