| File: HandlerImpl\Map.Impl.cs | Web Access |
| Project: src\src\Controls\Maps\src\Controls.Maps.csproj (Microsoft.Maui.Controls.Maps) |
using System.Collections.Generic; using System.Linq; using Microsoft.Maui.Devices.Sensors; using Microsoft.Maui.Maps; namespace Microsoft.Maui.Controls.Maps { public partial class Map : IMap, IEnumerable<IMapPin> { IList<IMapElement> IMap.Elements => _mapElements.Cast<IMapElement>().ToList(); IList<IMapPin> IMap.Pins => _pins.Cast<IMapPin>().ToList(); void IMap.Clicked(Location location) => MapClicked?.Invoke(this, new MapClickedEventArgs(location)); MapSpan? IMap.VisibleRegion { get { return _visibleRegion; } set { SetVisibleRegion(value); } } /// <summary> /// Raised when the handler for this map control changed. /// </summary> protected override void OnHandlerChanged() { base.OnHandlerChanged(); //The user specified on the ctor a MapSpan we now need the handler to move to that region Handler?.Invoke(nameof(IMap.MoveToRegion), _lastMoveToRegion); } } }