namespace Mapbox.Examples { using UnityEngine; using Mapbox.Unity.MeshGeneration.Interfaces; using System.Collections.Generic; public class PoiMarkerHelper : MonoBehaviour, IFeaturePropertySettable { Dictionary _props; public void Set(Dictionary props) { _props = props; } void OnMouseUpAsButton() { foreach (var prop in _props) { Debug.Log(prop.Key + ":" + prop.Value); } } } }