powerfun-unity/Assets/Mapbox/Unity/Map/Strategies/MapPlacementAtLocationCenterStrategy.cs
2021-03-30 17:27:50 +08:00

14 lines
326 B
C#

using Mapbox.Unity.Map.Interfaces;
using Mapbox.Unity.Utilities;
namespace Mapbox.Unity.Map.Strategies
{
public class MapPlacementAtLocationCenterStrategy : IMapPlacementStrategy
{
public void SetUpPlacement(AbstractMap map)
{
map.SetCenterMercator(Conversions.LatLonToMeters(map.CenterLatitudeLongitude));
}
}
}