-
Notifications
You must be signed in to change notification settings - Fork 452
/
Image Layer Options.html
466 lines (411 loc) · 21.5 KB
/
Image Layer Options.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
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
<!DOCTYPE html>
<html lang="en">
<head>
<title>Image Layer Options - Azure Maps Web SDK Samples</title>
<meta charset="utf-8" />
<link rel="shortcut icon" href="/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="This sample shows how the different options of the image layer affect rendering." />
<meta name="keywords" content="Microsoft maps, map, gis, API, SDK, image, raster, layer, ground overlay, groundoverlay" />
<meta name="author" content="Microsoft Azure Maps" /><meta name="version" content="1.0" />
<meta name="screenshot" content="screenshot.jpg" />
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
<link href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" rel="stylesheet" />
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
<script src="/lib/clipboard/dist/clipboard.min.js"></script>
<script>
var map, imageLayer, defaultOptions, removeDefaults;
var coordinateRx = /^-?[0-9]+\.?[0-9]*\s*,+\s*-?[0-9]+\.?[0-9]*$/;
function getMap() {
//Initialize a map instance.
map = new atlas.Map('myMap', {
view: 'Auto',
//Add authentication details for connecting to Azure Maps.
authOptions: {
//Use Microsoft Entra ID authentication.
authType: 'anonymous',
clientId: 'e6b6ab59-eb5d-4d25-aa57-581135b927f0', //Your Azure Maps client id for accessing your Azure Maps account.
getToken: function (resolve, reject, map) {
//URL to your authentication service that retrieves an Microsoft Entra ID Token.
var tokenServiceUrl = 'https://samples.azuremaps.com/api/GetAzureMapsToken';
fetch(tokenServiceUrl).then(r => r.text()).then(token => resolve(token));
}
//Alternatively, use an Azure Maps key. Get an Azure Maps key at https://azure.com/maps. NOTE: The primary key should be used as the key.
//authType: 'subscriptionKey',
//subscriptionKey: '[YOUR_AZURE_MAPS_KEY]'
}
});
//Wait until the map resources are ready.
map.events.add('ready', function () {
//Create a style control and add it to the map.
map.controls.add(new atlas.control.StyleControl({
style: 'dark',
mapStyles: 'all'
}), {
position: 'top-right'
});
//Create an image layer and add it to the map below the labels.
imageLayer = new atlas.layer.ImageLayer(getSourceOptions());
map.layers.add(imageLayer, 'labels');
defaultOptions = imageLayer.getOptions();
//Update the image layer with the options in the input fields.
updateImageLayer(true, true);
});
new ClipboardJS('.copyBtn');
}
function updateImageLayer(updateSource, updateView) {
var options = getInputOptions();
var source = getSourceOptions();
//Update all the options in the image layer.
if (updateSource) {
options = Object.assign(options, source);
map.layers.remove(imageLayer);
imageLayer = new atlas.layer.ImageLayer(options);
map.layers.add(imageLayer, 'labels');
if (updateView) {
//Update the map view based on the bounds of the coordinates.
map.setCamera({
bounds: atlas.data.BoundingBox.fromPositions(source.coordinates)
});
}
} else {
imageLayer.setOptions(options);
options = Object.assign(options, source);
}
document.getElementById('CodeOutput').value = JSON.stringify(options, null, '\t').replace(/\"([^(\")"]+)\":/g, "$1:");
}
function getSourceOptions() {
var coords;
if (document.getElementById('useBoundsRotation').checked) {
var north = parseFloat(document.getElementById('NorthBounds').value);
var south = parseFloat(document.getElementById('SouthBounds').value);
var east = parseFloat(document.getElementById('EastBounds').value);
var west = parseFloat(document.getElementById('WestBounds').value);
var rotation = parseFloat(document.getElementById('Rotation').value);
coords = atlas.layer.ImageLayer.getCoordinatesFromEdges(north, south, east, west, rotation);
} else {
coords = [
parseCoordinate('TopLeft', 'top left'),
parseCoordinate('TopRight', 'top right'),
parseCoordinate('BottomRight', 'bottom right'),
parseCoordinate('BottomLeft', 'bottom left')
];
}
return {
url: document.getElementById('ImageUrl').value,
coordinates: coords
};
}
function getInputOptions() {
removeDefaults = document.getElementById('RemoveDefaults').checked;
return {
contrast: getPropertyValue('contrast', parseFloat(document.getElementById('Contrast').value)),
fadeDuration: getPropertyValue('fadeDuration', parseFloat(document.getElementById('FadeDuration').value)),
hueRotation: getPropertyValue('hueRotation', parseFloat(document.getElementById('HueRotation').value)),
maxBrightness: getPropertyValue('maxBrightness', parseFloat(document.getElementById('MaxBrightness').value)),
minBrightness: getPropertyValue('minBrightness', parseFloat(document.getElementById('MinBrightness').value)),
opacity: getPropertyValue('opacity', parseFloat(document.getElementById('Opacity').value)),
saturation: getPropertyValue('saturation', parseFloat(document.getElementById('Saturation').value)),
minZoom: getPropertyValue('minZoom', parseFloat(document.getElementById('MinZoom').value)),
maxZoom: getPropertyValue('maxZoom', parseFloat(document.getElementById('MaxZoom').value)),
visible: getPropertyValue('visible', document.getElementById('Visible').checked)
};
return Object.assign(layerOptions, sourceOptions);
}
function parseCoordinate(elmId, name) {
var query = document.getElementById(elmId).value;
if (coordinateRx.test(query)) {
var vals = query.split(',');
return [parseFloat(vals[0]), parseFloat(vals[1])];
}
alert('Invalid coordinate for ' + name + ' corner of image.');
return null;
}
function getPropertyValue(propertyName, value) {
if (removeDefaults && defaultOptions[propertyName] === value) {
return undefined;
}
return value;
}
function getSelectValue(id) {
var elm = document.getElementById(id);
return elm.options[elm.selectedIndex].value;
}
function toggleCoordInput() {
if (document.getElementById('useBoundsRotation').checked) {
document.getElementById('boundsRotationOptions').style.display = '';
document.getElementById('coordinateOptions').style.display = 'none';
} else {
document.getElementById('coordinateOptions').style.display = '';
document.getElementById('boundsRotationOptions').style.display = 'none';
}
}
function openTab(elm, tabName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(tabName).style.display = "block";
elm.className += " active";
}
</script>
<style>
#myMap {
position: relative;
width: calc(100% - 375px);
min-width:290px;
height: 600px;
float: left;
}
.sidePanel {
width: 325px;
height: 580px;
float: left;
margin-right: 10px;
}
#CodeOutput {
width: 300px;
height: 400px;
overflow-y: auto;
}
.copyBtn {
float: right;
}
table td:nth-of-type(1) {
width: 130px;
}
table td:nth-of-type(2) {
width: 200px;
}
.tab {
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
}
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 6px 8px;
transition: 0.3s;
font-size: 14px;
}
.tab button:hover {
background-color: #ddd;
}
.tab button.active {
background-color: #ccc;
}
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
}
</style>
</head>
<body onload="getMap()">
<fieldset class="sidePanel">
<legend>Image Layer Options</legend>
This sample shows how the different options of the image layer affect rendering.
<br /><br />
<div class="tab">
<button class="tablinks active" onclick="openTab(this, 'StyleOptions')">Base Options</button>
<button class="tablinks" onclick="openTab(this, 'MediaOptions')">Media Options</button>
<button class="tablinks" onclick="openTab(this, 'ImageSource')">Image Source</button>
<button class="tablinks" onclick="openTab(this, 'Code')">Code</button>
</div>
<div id="StyleOptions" class="tabcontent" style="display:block;">
<table>
<tr title="An integer specifying the minimum zoom level to render the layer at.">
<td>Min Zoom:</td>
<td>
<form oninput="minz.value=MinZoom.value">
<input type="range" id="MinZoom" value="0" min="0" max="24" step="1" oninput="updateImageLayer()" onchange="updateImageLayer()" />
<output name="minz" for="MinZoom">0</output>
</form>
</td>
</tr>
<tr title="An integer specifying the maximum zoom level to render the layer at.">
<td>Max Zoom:</td>
<td>
<form oninput="maxz.value=MaxZoom.value">
<input type="range" id="MaxZoom" value="24" min="0" max="24" step="1" oninput="updateImageLayer()" onchange="updateImageLayer()" />
<output name="maxz" for="MaxZoom">24</output>
</form>
</td>
</tr>
<tr title="Specifies if the layer is visible or not.">
<td>Visible:</td>
<td><input id="Visible" type="checkbox" onclick="updateImageLayer()" checked="checked" /></td>
</tr>
</table>
<p>
In addition to the options in this tool, the ImageLayer also has options for;
</p>
</div>
<div id="MediaOptions" class="tabcontent">
<table>
<tr title="The duration in milliseconds of a fade-in transition when changing visibility of the image layer. ">
<td>Fade Duration</td>
<td>
<form oninput="fadeDuration.value=FadeDuration.value">
<input type="range" id="FadeDuration" value="300" min="0" max="1000" step="100" oninput="updateImageLayer()" onchange="updateImageLayer()" />
<output name="fadeDuration" for="FadeDuration">300</output>
</form>
</td>
</tr>
<tr title="A number between 0 and 1 that indicates the opacity at which the overlay will be drawn.">
<td>Opacity</td>
<td>
<form oninput="opacity.value=Opacity.value">
<input type="range" id="Opacity" value="1" min="0" max="1" step="0.1" oninput="updateImageLayer()" onchange="updateImageLayer()" />
<output name="opacity" for="Opacity">1</output>
</form>
</td>
</tr>
<tr title="A number between -1 and 1 that increases or decreases the contrast of the overlay.">
<td>Contrast</td>
<td>
<form oninput="contrast.value=Contrast.value">
<input type="range" id="Contrast" value="0" min="-1" max="1" step="0.1" oninput="updateImageLayer()" onchange="updateImageLayer()" />
<output name="contrast" for="Contrast">0</output>
</form>
</td>
</tr>
<tr title="Rotates hues around the color wheel. A number in degrees.">
<td>Hue Rotation</td>
<td>
<form oninput="hueRotation.value=HueRotation.value">
<input type="range" id="HueRotation" value="0" min="0" max="360" step="1" oninput="updateImageLayer()" onchange="updateImageLayer()" />
<output name="hueRotation" for="HueRotation">0</output>
</form>
</td>
</tr>
<tr title="A number between 0 and 1 that increases or decreases the maximum brightness of the overlay.">
<td>Max Brightness</td>
<td>
<form oninput="maxBrightness.value=MaxBrightness.value">
<input type="range" id="MaxBrightness" value="1" min="0" max="1" step="0.1" oninput="updateImageLayer()" onchange="updateImageLayer()" />
<output name="maxBrightness" for="MaxBrightness">1</output>
</form>
</td>
</tr>
<tr title="A number between 0 and 1 that increases or decreases the minimum brightness of the overlay.">
<td>Min Brightness</td>
<td>
<form oninput="minBrightness.value=MinBrightness.value">
<input type="range" id="MinBrightness" value="0" min="0" max="1" step="0.1" oninput="updateImageLayer()" onchange="updateImageLayer()" />
<output name="minBrightness" for="MinBrightness">0</output>
</form>
</td>
</tr>
<tr title="A number between -1 and 1 that increases or decreases the saturation of the overlay.">
<td>Saturation</td>
<td>
<form oninput="saturation.value=Saturation.value">
<input type="range" id="Saturation" value="0" min="-1" max="1" step="0.1" oninput="updateImageLayer()" onchange="updateImageLayer()" />
<output name="saturation" for="Saturation">0</output>
</form>
</td>
</tr>
</table>
</div>
<div id="ImageSource" class="tabcontent">
<table>
<tr title="URL to an image to overlay. Images hosted on other domains must have CORs enabled.">
<td>Image Url:</td>
<td>
<input type="text" id="ImageUrl" value="/images/image-overlays/Foto_a%C3%A9rea_de_Una%C3%AD_detalhando_o_c%C3%B3rrego_Canabrava_3.jpg" />
</td>
</tr>
<tr>
<td colspan="2">
<input id="useBoundsRotation" type="checkbox" onclick="toggleCoordInput()"/> Use bounds and rotation<br />
<table id="boundsRotationOptions" style="display:none">
<tr><td colspan="2"><b>Bounds:</b></td><td></td></tr>
<tr title="The northern most coordinate of the bounds.">
<td> North:</td>
<td>
<input type="number" id="NorthBounds" min="-85.0511" max="85.0511" value="-16.365232" />
</td>
</tr>
<tr title="The sothern most coordinate of the bounds.">
<td> South:</td>
<td>
<input type="number" id="SouthBounds" min="-85.0511" max="85.0511" value="-16.367425" />
</td>
</tr>
<tr title="The eastern most coordinate of the bounds.">
<td> East:</td>
<td>
<input type="number" id="EastBounds" min="-180" max="180" value="-46.893370" />
</td>
</tr>
<tr title="The western most coordinate of the bounds.">
<td> West:</td>
<td>
<input type="number" id="WestBounds" min="-180" max="180" value="-46.896867" />
</td>
</tr>
<tr title="The rotation of the image.">
<td><b>Rotation:</b></td>
<td>
<form oninput="rotation.value=Rotation.value">
<input type="range" id="Rotation" value="298" min="0" max="360" step="1" /> <!--oninput="updateImageLayer(true)" onchange="updateImageLayer(true)" />-->
<output name="rotation" for="Rotation">298</output>
</form>
</td>
</tr>
</table>
<table id="coordinateOptions">
<tr><td colspan="2"><b>Corner Position:</b></td><td></td></tr>
<tr title="The coordinate of the top left corner of the image.">
<td> Top Left:</td>
<td>
<input type="text" id="TopLeft" value="-46.896948,-16.367295" />
</td>
</tr>
<tr title="The coordinate of the top right corner of the image.">
<td> Top Right:</td>
<td>
<input type="text" id="TopRight" value="-46.895306,-16.364333" />
</td>
</tr>
<tr title="The coordinate of the bottom right corner of the image.">
<td> Bottom Right:</td>
<td>
<input type="text" id="BottomRight" value="-46.893289,-16.365362" />
</td>
</tr>
<tr title="The coordinate of the bottom left corner of the image.">
<td> Bottom Left:</td>
<td>
<input type="text" id="BottomLeft" value="-46.894930,-16.368324" />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td></td>
<td><input type="button" value="Update Image Source" onclick="updateImageLayer(true, true);" /></td>
</tr>
</table>
</div>
<div id="Code" class="tabcontent">
<textarea id="CodeOutput"></textarea><br /><br />
<input id="RemoveDefaults" type="checkbox" onclick="updateImageLayer()" checked="checked" /> Remove defaults
<button class="copyBtn" data-clipboard-target="#CodeOutput">Copy to clipboard</button>
</div>
</fieldset>
<div id="myMap"></div>
</body>
</html>