Skip to content
Snippets Groups Projects
VectorTileFeature.cs 577 B
Newer Older
using System.Collections.Generic;

namespace Mapbox.Vector.Tile
{

    public class VectorTileFeature
    {
        public string Id { get; set; }
        public List<List<Coordinate>> Geometry { get; set; }
        public List<KeyValuePair<string, object>> Attributes { get; set; }
        public Tile.GeomType GeometryType { get; set; }
        public uint Extent { get; set; }
Knuiman, Bart's avatar
Knuiman, Bart committed

        /* Added to this struct for easier managing layer info. */
        public int SelectedLayerIdx { get; set; }
        public int RelativeHeight { get; set; }