Example #1
0
        protected override void OnElementChanged(ElementChangedEventArgs<View> e)
        {
            base.OnElementChanged(e);

            var mapView = Control as MapView;
            if (mapView == null)
                return;
            formsMap = Element as CustomMap;

            if (formsMap != null && map == null)
            {
                mapView.GetMapAsync(this);
            }
        }
Example #2
0
        public MappingPage()
        {
            NavigationPage.SetHasNavigationBar(this, false);
            if (Device.OS == TargetPlatform.iOS)
                Padding = new Thickness(0, 20, 0, 0);

            if (App.Self.MyPosition == null)
            {
                App.Self.MyPosition = new MyLatLong
                {
                    Latitude = 53.4299,
                    Longitude = -2.9615
                };
            }

            map = new CustomMap(new MapSpan(new Position(App.Self.MyPosition.Latitude, App.Self.MyPosition.Longitude),
                                      53.43800, 2.96764))
            {
                HasZoomEnabled = true,
                HasScrollEnabled = true,
                MapType = MapType.Hybrid,
                HeightRequest = App.ScreenSize.Height,
                WidthRequest = App.ScreenSize.Width,
                IsShowingUser = true,
            };
            pin = new Pin
            {
                Label = "You are here",
                Position = new Position(53.4299, -2.9615),
            };
            map.Pins.Add(pin);

            Content = new StackLayout
            {
                VerticalOptions = LayoutOptions.FillAndExpand,
                HorizontalOptions = LayoutOptions.FillAndExpand,
                Children = { map }
            };

        }