Esempio n. 1
0
        private async void FabOnClick(object sender, EventArgs eventArgs)
        {
            View view     = (View)sender;
            var  location = await FamilyLocationService.GetUserLatLng();

            updateCamera(location);
        }
Esempio n. 2
0
        private async Task onViewSelected(int viewId)
        {
            _mapType = viewId;
            var location = await FamilyLocationService.GetUserLatLng();

            updateCamera(location);
        }
Esempio n. 3
0
        public async void OnMapReady(GoogleMap googleMap)
        {
            mMap = googleMap;

            var location = await FamilyLocationService.GetUserLatLng();

            updateCamera(location);
            addMarker(mMap, location);
        }