public override void Run (VectorEntity fb, UnityTile tile)
		{
			try {
				// Get the static singleton instance.
				markerScript = GeoPosition.Instance;
				// Perform any operation - here height of the buildings are measured.
				markerScript.performAction ();
			} catch (Exception ex) {
				Debug.LogException (ex);
			}
		}