Burst error: The Geometry has no Z values

Source: Internet
Author: User
Tags ipoint

ArcGIS Add Map Callout, burst error: The Geometry has no Z values

Here's how to fix it:

public bool Addfeature (ESRI.            ArcGIS.Geometry.IGeometry geometry,system.collections.generic.dictionary<string,object> properties) { try {ESRI.                 ArcGIS.Geodatabase.IFeature feature = _featurelayer.featureclass.createfeature ();                int index; index = feature.                Fields.findfield ("Shape");                Igeometrydef Pgeometrydef; Pgeometrydef = feature. Fields.get_field (Index).                 Geometrydef as Igeometrydef;                    if (Pgeometrydef.hasz) {Izaware Pzaware = (izaware) geometry;                    Pzaware.zaware = true;                    IZ IZ1 = (IZ) geometry; Iz1.  Setconstantz (0);                    Set the z value to 0 IPoint point = (IPoint) geometry; Point.                Z = 0;                    } else {Izaware Pzaware = (izaware) geometry;                Pzaware.zaware = false;   }             if (pgeometrydef.hasm) {Imaware Pmaware = (imaware) geometry;                Pmaware.maware = true;                    } else {Imaware Pmaware = (imaware) geometry;                Pmaware.maware = false; } feature.                Shape = geometry; foreach (String key in properties.                Keys) {setfeatueproperty (feature, Key, Properties[key]); } feature.                  Store ();            return true;            } catch (Exception ee) {return false; }        }

  

Burst error: The Geometry has no Z values

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.