-
Notifications
You must be signed in to change notification settings - Fork 0
/
exercise8.html
66 lines (56 loc) · 1.46 KB
/
exercise8.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
<!-- Exercise 8, Written in JavaScript 4.18 -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<title>Exercise 8</title>
<link rel="stylesheet" href="https://js.arcgis.com/4.21/esri/css/main.css">
<script src="https://js.arcgis.com/4.21/"></script>
<style>
html, body, #viewDiv {
padding: 0;
margin: 0;
height: 100%;
}
</style>
<script>
require([
"esri/WebMap",
"esri/views/MapView",
/*** ADD THESE ***/
"esri/widgets/Search",
"esri/widgets/BasemapGallery",
"esri/widgets/Expand"
], function(WebMap, MapView, Search, BasemapGallery, Expand) {
var map = new WebMap({
portalItem: { // autocasts as new PortalItem()
id: "7d281311aef74b5fa2c39f0ebc01b5dd"
}
});
var view = new MapView({
map: map,
container: "viewDiv"
});
//Create search widget
var searchWidget = new Search({
view: view
});
//Add widget to the UI
view.ui.add(searchWidget, "top-right");
var basemapGallery = new BasemapGallery({
view: view
});
var basemapExpand = new Expand({
content: basemapGallery,
view: view
});
//Add widget to the UI
view.ui.add(basemapExpand, "top-right");
});
</script>
</head>
<body>
<div id="viewDiv"></div>
</body>
</html>