Всем привет, подскажите, что не так,
Добавляю точку на точечный слои
FeatureLayer featurelayer = new FeatureLayer();
featurelayer.Url = "http://myserver/arcgis/rest/services/Fs/FeatureServer/0";
featurelayer.Mode = FeatureLayer.QueryMode.OnDemand;
Graphic graphic = new Graphic();
graphic.Attributes.Add("REGIONS", "Text" ;
graphic.Attributes.Add("CODE", 1919);
graphic.Attributes.Add("LASTDATE", DateTime.Now);
graphic.Geometry = new MapPoint(5018024,6944, 5018024,6944, MyMap.SpatialReference);
featurelayer.Graphics.Add(graphic);
featurelayer.SaveEdits();
Не срабатывает