获取人口统计数据
了解如何使用地理丰富服务查找世界各地的人口统计信息。
步骤
创建新 Pen
导入 GeoScene REST JS
导入 GeoScene REST JS 模块以访问某些 GeoScene 位置服务,例如,从地理丰富服务中访问人口数据统计。
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!-- require GeoScene REST JS libraries from https://unpkg.com -->
<script src="https://unpkg.com/@geoscene/geoscene-rest-request@4.0.0/dist/bundled/request.umd.js"></script>
<script src="https://unpkg.com/@geoscene/geoscene-rest-demographics@4.0.0/dist/bundled/demographics.umd.js"></script>
<link rel="stylesheet" href="https://js.geoscene.cn/4.25/geoscene/themes/light/main.css">
<script src="https://js.geoscene.cn/4.25/"></script>
在 CodePen 中,将
api
设置为您的密钥,以便将其用于访问底图图层、位置和地理丰富服务。Key 您还需要使用 API 密钥来访问 GeoScene REST JS。
展开 代码块使用深色 添加行。 更改行 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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
const authentication = arcgisRest.ApiKeyManager.fromKey("YOUR_API_KEY"); geosceneConfig.apiKey = "YOUR_API_KEY";展开
添加模块
在
require
语句中,添加 Graphic、geometryEngine、搜索、locator 和 reactiveUtils 模块。展开 代码块使用深色 添加行。 添加行。 添加行。 添加行。 添加行。 更改行 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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
require([ "geoscene/config", "geoscene/Map", "geoscene/views/MapView", "geoscene/Graphic", "geoscene/geometry/geometryEngine", "geoscene/widgets/Search", "geoscene/rest/locator", "geoscene/core/reactiveUtils" ], function (geosceneConfig, Map, MapView, Graphic, geometryEngine, Search, locator, reactiveUtils) {展开
更新地图
街道底图图层通常用于地理编码应用程序。更新 basemap
属性以使用 arcgis-navigation
底图图层并将地图的位置更改为以意大利米兰为中心。
将
basemap
属性从arcgis-topographic
更新为arcgis-navigation
。展开 代码块使用深色 更改行 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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
const map = new Map({ basemap: "arcgis-navigation" });展开 将
center
属性更新为[9.1900, 45.4642]
并将zoom
属性设置为4
。展开 代码块使用深色 更改行 更改行 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