2021-03-22 19:20:51 +08:00

11 lines
165 B
C#

using Mapbox.Utils;
namespace Mapbox.Unity.Map.Interfaces
{
public interface IUnifiedMap
{
void UpdateMap(Vector2d latLon, float zoom);
void ResetMap();
}
}