| File: Handlers\Map\MapHandler.Standard.cs | Web Access |
| Project: src\src\Core\maps\src\Maps.csproj (Microsoft.Maui.Maps) |
using System; using Microsoft.Maui.Handlers; namespace Microsoft.Maui.Maps.Handlers { public partial class MapHandler : ViewHandler<IMap, object> { protected override object CreatePlatformView() => throw new NotImplementedException(); public static void MapMapType(IMapHandler handler, IMap map) => throw new NotImplementedException(); public static void MapIsShowingUser(IMapHandler handler, IMap map) => throw new NotImplementedException(); public static void MapIsScrollEnabled(IMapHandler handler, IMap map) => throw new NotImplementedException(); public static void MapIsTrafficEnabled(IMapHandler handler, IMap map) => throw new NotImplementedException(); public static void MapIsZoomEnabled(IMapHandler handler, IMap map) => throw new NotImplementedException(); public static void MapMoveToRegion(IMapHandler handler, IMap map, object? arg) => throw new NotImplementedException(); public static void MapPins(IMapHandler handler, IMap map) => throw new NotImplementedException(); public static void MapElements(IMapHandler handler, IMap map) => throw new NotImplementedException(); public void UpdateMapElement(IMapElement element) => throw new NotImplementedException(); } }