-
Notifications
You must be signed in to change notification settings - Fork 2
/
PopupFocus.html
96 lines (84 loc) · 2.75 KB
/
PopupFocus.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
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
<!--
Codepen sample: https://codepen.io/geospatialem/pen/vYzgjLQ
-->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<title>
2023 DevSummit: JS Maps SDK Popup focus
</title>
<link rel="stylesheet" href="https://js.arcgis.com/4.26/esri/themes/light/main.css" />
<style>
html,
body,
#viewDiv {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}
#instruction {
z-index: 99;
position: absolute;
top: 15px;
left: 50%;
padding: 5px;
margin-left: -175px;
height: 30px;
width: 355px;
background: rgba(25, 25, 25, 0.8);
color: white;
}
</style>
<script src="https://js.arcgis.com/4.26/"></script>
<script>require(["esri/rest/locator", "esri/Map", "esri/views/MapView"], (
locator,
Map,
MapView
) => {
// Geocoding service locator
const locatorUrl =
"https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer";
const map = new Map({
basemap: "streets-navigation-vector"
});
const view = new MapView({
container: "viewDiv",
map: map,
center: [-116.5392, 33.8259],
zoom: 12
});
view.popup.autoOpenEnabled = false;
view.on("click", (event) => {
// Get the coordinates of the click on the view
const lat = Math.round(event.mapPoint.latitude * 1000) / 1000;
const lon = Math.round(event.mapPoint.longitude * 1000) / 1000;
view.popup.open({
title: "Reverse geocode: [" + lon + ", " + lat + "]",
location: event.mapPoint,
shouldFocus: true // Sets the popup focus on open
});
const params = {
location: event.mapPoint
};
// Display the popup
locator
.locationToAddress(locatorUrl, params)
.then((response) => {
view.popup.content = response.address;
})
.catch(() => {
view.popup.content = "No address was found for this location";
});
});
});
</script>
</head>
<body>
<div id="viewDiv"></div>
<div id="instruction" class="esri-widget">
Click any location on the map to see its street address
</div>
</body>
</html>