11 lines
165 B
C#
Raw Normal View History

2021-03-22 19:20:51 +08:00
using Mapbox.Utils;
namespace Mapbox.Unity.Map.Interfaces
{
public interface IUnifiedMap
{
void UpdateMap(Vector2d latLon, float zoom);
void ResetMap();
}
}