-
Notifications
You must be signed in to change notification settings - Fork 2
/
PrefersReducedMotion.html
66 lines (53 loc) · 1.62 KB
/
PrefersReducedMotion.html
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
<!--
Codepen sample: https://codepen.io/kellyhutchins/pen/bGxqWwg
-->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<title>
2023 Developer Summit: GoToOverrides to disable animation
</title>
<style>
html,
body,
#viewDiv {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}
</style>
<link rel="stylesheet" href="https://js.arcgis.com/4.26/esri/themes/light/main.css" />
<script src="https://js.arcgis.com/4.26/"></script>
<script>
require(["esri/views/MapView", "esri/WebMap"], (MapView, WebMap) => {
const webmap = new WebMap({
portalItem: {
id: "f2e9b762544945f390ca4ac3671cfa72"
}
});
const view = new MapView({
map: webmap,
container: "viewDiv"
});
view.popup.goToOverride = goToOverride;
function goToOverride(view, goToParams) {
const mediaQuery = window.matchMedia("(prefers-reduced-motion: reduce)");
if (mediaQuery.matches) {
goToParams.options = {
...goToParams.options,
...{
animate: false,
},
};
}
return view.goTo(goToParams.target, goToParams.options);
}
});
</script>
</head>
<body>
<div id="viewDiv"></div>
</body>
</html>