Exemplo n.º 1
0
        private ResponseGeocodingGeoJsonFeature(string Type, ResponseGeocodingGeometry Geometry, ResponseGeocodingProperties Properties)
        {
            this.Type = Type;

            this.Geometry = Geometry;

            this.Properties = Properties;
        }
Exemplo n.º 2
0
 /// <summary>
 /// Sets value for ResponseGeocodingGeoJsonFeature.Geometry property.
 /// </summary>
 /// <param name="value">Geometry</param>
 public ResponseGeocodingGeoJsonFeatureBuilder Geometry(ResponseGeocodingGeometry value)
 {
     _Geometry = value;
     return(this);
 }