Real world tileset size

Back
Tags:
Tileset
Math
Example of how to make a map that will be the real world size.
Requirement: Tileset Control
Usage instructions:
Add this script to map GameObject and start the scene.
Size of tileset GameObject will match the size of the real world.
RealTilesetSizeExample.cs
/*         INFINITY CODE         */
/*   https://infinity-code.com   */

using UnityEngine;

namespace InfinityCode.OnlineMapsExamples
{
    /// <summary>
    /// Example of how to make a map that will be the real world size.
    /// </summary>
    [AddComponentMenu("Infinity Code/Online Maps/Examples (API Usage)/RealTilesetSizeExample")]
    public class RealTilesetSizeExample : MonoBehaviour
    {
        private void Start()
        {
            // Initial resize
            UpdateSize();

            // Subscribe to change zoom
            OnlineMaps.instance.OnChangeZoom += OnChangeZoom;
        }

        private void OnChangeZoom()
        {
            UpdateSize();
        }

        private void UpdateSize()
        {
            // Get distance (km) between corners of map
            Vector2 distance = OnlineMapsUtils.DistanceBetweenPoints(OnlineMaps.instance.topLeftPosition,
                OnlineMaps.instance.bottomRightPosition);

            // Set tileset size
            OnlineMapsControlBaseDynamicMesh.instance.sizeInScene = distance * 1000;

            // Redraw map
            OnlineMaps.instance.Redraw();
        }
    }
}