Beispiel #1
0
        private void HandleObjectGroupNode(XElement _node)
        {
            var layerName = _node.Attribute("name").Value;

            foreach (var xNode in _node.Nodes())
            {
                var objectMeta = new ITU_EachObjectMeta();
                objectMeta.Deserialize(xNode as XElement, layerName);
                objectList.Add(objectMeta);
            }
        }
Beispiel #2
0
 public virtual void HandleMapObject(ITU_EachObjectMeta _objectMeta)
 {
 }