Exemplo n.º 1
0
        private void InitializeMapView()
        {
            var apiKey = this.GetGoogleMapsApiKey();
            _map = new MapView(Activity, apiKey)
                       {
                           Clickable = true
                       };

            _map.Controller.SetZoom(17);
            _map.SetBuiltInZoomControls(true);
            _map.DisplayZoomControls(true);
        }