forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTakeScreenshot.cs
112 lines (93 loc) · 4.62 KB
/
TakeScreenshot.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// Copyright 2016 Esri.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
// You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
// language governing permissions and limitations under the License.
using Android.App;
using Android.OS;
using Android.Widget;
using Esri.ArcGISRuntime.Mapping;
using Esri.ArcGISRuntime.UI;
using Esri.ArcGISRuntime.UI.Controls;
using System;
namespace ArcGISRuntime.Samples.TakeScreenshot
{
[Activity]
[ArcGISRuntime.Samples.Shared.Attributes.Sample(
"Take screenshot",
"MapView",
"This sample demonstrates how you can take screenshot of a map. Click 'capture' button to take a screenshot of the visible area of the map. Created image is shown in the sample after creation.",
"")]
public class TakeScreenshot : Activity
{
// Create and hold reference to the used map view.
private MapView _myMapView = new MapView();
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
Title = "Take screenshot";
// Create the UI, setup the control references and execute initialization.
CreateLayout();
Initialize();
}
private void Initialize()
{
// Create a new map instance with the basemap.
Basemap myBasemap = Basemap.CreateStreets();
Map myMap = new Map(myBasemap);
// Assign the map to the map view.
_myMapView.Map = myMap;
}
private async void OnTakeScreenshotClicked(object sender, EventArgs e)
{
try
{
// Export the image from map view.
RuntimeImage exportedImage = await _myMapView.ExportImageAsync();
// Create an image button (this will display the exported map view image).
ImageButton myImageButton = new ImageButton(this)
{
// Define the size of the image button to be 2/3 the size of the map view.
LayoutParameters = new Android.Views.ViewGroup.LayoutParams((int)(_myMapView.Width * .667), (int)(_myMapView.Height * .667))
};
// Set the source of the image button to be that of the exported map view image.
myImageButton.SetImageBitmap(await exportedImage.ToImageSourceAsync());
// Make the image that was captured from the map view export to fit within (aka scale-to-fit) the image button.
myImageButton.SetScaleType(ImageView.ScaleType.FitCenter);
// Define a popup with a single image button control and make the size of the popup to be 2/3 the size of the map view.
PopupWindow myPopupWindow = new PopupWindow(myImageButton, (int)(_myMapView.Width * .667), (int)(_myMapView.Height * .667));
// Display the popup in the middle of the map view.
myPopupWindow.ShowAtLocation(_myMapView, Android.Views.GravityFlags.Center, 0, 0);
// Define a lambda event handler to close the popup when the user clicks on the image button.
myImageButton.Click += (s, a) => myPopupWindow.Dismiss();
}
catch (Exception ex)
{
// Display any errors to the user if capturing the map view image did not work.
AlertDialog.Builder alertBuilder = new AlertDialog.Builder(this);
alertBuilder.SetTitle("ExportImageAsync error");
alertBuilder.SetMessage("Capturing image failed. " + ex.Message);
alertBuilder.Show();
}
}
private void CreateLayout()
{
// Create a new vertical layout for the app.
LinearLayout layout = new LinearLayout(this) { Orientation = Orientation.Vertical };
// Add a button to take a screen shot, with wired up event.
Button takeScreenshotButton = new Button(this)
{
Text = "Capture"
};
takeScreenshotButton.Click += OnTakeScreenshotClicked;
layout.AddView(takeScreenshotButton);
// Add the map view to the layout.
layout.AddView(_myMapView);
// Show the layout in the app.
SetContentView(layout);
}
}
}