This repository has been archived by the owner on May 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 127
/
Feature Tester.html
158 lines (130 loc) · 5.26 KB
/
Feature Tester.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Feature Tester - Bing Maps 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="Data Binning Layer Feature Tester sample" />
<meta name="keywords" content="Microsoft maps, map, gis, API, SDK, Bing, Bing Maps" />
<meta name="author" content="Microsoft Bing Maps" />
<meta name="screenshot" content="screenshot.jpg" />
<script>
var map, layer, pins;
function GetMap()
{
map = new Microsoft.Maps.Map('#myMap', {});
pins = Microsoft.Maps.TestDataGenerator.getPushpins(5000, map.getBounds());
Microsoft.Maps.loadModule('Microsoft.Maps.DataBinning', function () {
layer = new Microsoft.Maps.DataBinningLayer(pins, {
radius: 1,
distanceUnits: Microsoft.Maps.SpatialMath.DistanceUnits.Miles
});
map.layers.insert(layer);
});
}
function ChangeNumberOfPins(elm) {
var numPins = parseInt(elm.options[elm.selectedIndex].value);
pins = Microsoft.Maps.TestDataGenerator.getPushpins(numPins, map.getBounds());
var start = new Date().getTime();
layer.setPushpins(pins);
document.getElementById('numBins').innerText = layer.getPrimitives().length;
document.getElementById('processingTime').innerText = new Date().getTime() - start;
}
function ChangeDataBinType(elm) {
var binType = elm.options[elm.selectedIndex].value;
setOptions({ dataBinType: Microsoft.Maps.DataBinType[binType] });
}
function ChangeRadius(elm) {
var radius = parseFloat(elm.options[elm.selectedIndex].value);
setOptions({ radius: radius });
}
function ToggleColorCallback(elm) {
if (elm.checked) {
setOptions({ colorCallback: customColorCallback });
} else {
setOptions({ colorCallback: function () { return 'rgba(0,255,0,0.2)'; } });
}
}
function customColorCallback(bin, min, max) {
return 'rgba(0,0,255,' + bin.metrics.count / max.count + ')';
}
function ToggleScaleCallback(elm) {
if (elm.checked) {
setOptions({ scaleCallback: customScaleCallback });
} else {
setOptions({ scaleCallback: function () { return 1; } });
}
}
function customScaleCallback(bin, min, max) {
return bin.metrics.count / max.count;
}
function ToggleVisibility(elm) {
if (elm.checked) {
layer.setVisible(true);
} else {
layer.setVisible(false);
}
}
function setOptions(opt) {
var start = new Date().getTime();
layer.setOptions(opt);
document.getElementById('numBins').innerText = layer.getPrimitives().length;
document.getElementById('processingTime').innerText = new Date().getTime() - start;
}
</script>
</head>
<body>
<div id="myMap" style="position:relative;width:100%;min-width:290px;height:600px;background-color:gray"></div><br />
# of Pushpins:
<select onchange="ChangeNumberOfPins(this);">
<option value="1000">1,000</option>
<option selected="selected" value="5000">5,000</option>
<option value="10000">10,000</option>
<option value="50000">50,000</option>
<option value="100000">100,000</option>
<option value="150000">150,000</option>
</select>
Data Bin Type:
<select onchange="ChangeDataBinType(this);">
<option value="circle">Circle</option>
<option selected="selected" value="hexagon">Hexagon</option>
<option value="hexCircle">Hex Circle</option>
<option value="pointyHexagon">Pointy Hexagon</option>
<option value="square">Square</option>
</select>
Radius (miles):
<select onchange="ChangeRadius(this);">
<option value="0.1">0.1</option>
<option value="0.5">0.5</option>
<option selected="selected" value="1">1</option>
<option value="2">2</option>
<option value="5">5</option>
<option value="10">10</option>
<option value="50">50</option>
<option value="75">75</option>
<option value="100">100</option>
</select>
Color Callback:
<input type="checkbox" onclick="ToggleColorCallback(this)"/>
Scale Callback:
<input type="checkbox" onclick="ToggleScaleCallback(this)" />
Visible:
<input type="checkbox" onclick="ToggleVisibility(this)" checked="checked"/>
<br />
<br/>
Number of bins: <span id="numBins"></span>
<br />
Processing time (ms): <span id="processingTime"></span>
<script>
// Dynamic load the Bing Maps Key and Script
// Get your own Bing Maps key at https://www.microsoft.com/maps
(async () => {
let script = document.createElement("script");
let bingKey = await fetch("https://samples.azuremaps.com/api/GetBingMapsKey").then(r => r.text()).then(key => { return key });
script.setAttribute("src", `https://www.bing.com/api/maps/mapcontrol?callback=GetMap&key=${bingKey}`);
document.body.appendChild(script);
})();
</script>
</body>
</html>