/* INFINITY CODE 2013-2019 */ /* http://www.infinity-code.com */ using UnityEngine; namespace InfinityCode.RealWorldTerrain { /// /// Class of POI instance. /// public class RealWorldTerrainPOIItem : MonoBehaviour { /// /// The title of the POI. /// public string title; /// /// Longitude. /// public double x; /// /// Latitude. /// public double y; /// /// Altitude /// public float altitude; /// /// Sets POI prefs. /// /// Reference to POI. public void SetPrefs(RealWorldTerrainPOI poi) { title = poi.title; x = poi.x; y = poi.y; altitude = poi.altitude; } } }