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
/
Html Pushpin Layer.html
128 lines (107 loc) · 5.23 KB
/
Html Pushpin Layer.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML Pushpin Layer - 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="This sample shows how to create a custom layer for display HTML based pushpins using a Custom Overlay." />
<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, infobox, layer;
//Create a simple reusable HTML template to keep things easy.
var htmlTemplate = '<div class="htmlPushpin">{text}</div>';
function GetMap()
{
map = new Microsoft.Maps.Map('#myMap', {});
//Create an infobox at the center of the map but don't show it.
infobox = new Microsoft.Maps.Infobox(map.getCenter(), {
offset: new Microsoft.Maps.Point(0, 12),
showCloseButton: false,
visible: false
});
infobox.setMap(map);
//Register the custom module.
Microsoft.Maps.registerModule('HtmlPushpinLayerModule', '/overlays/html-pushpin-layer/HtmlPushpinLayerModule.js');
//Load the module.
Microsoft.Maps.loadModule('HtmlPushpinLayerModule', function () {
//Create some HTML pushpins in random locations.
var locs = Microsoft.Maps.TestDataGenerator.getLocations(5, map.getBounds());
//Create an array of Html Pushpins.
var pins = [
new HtmlPushpin(locs[0], htmlTemplate.replace('{text}', 'Hello World!'), { anchor: new Microsoft.Maps.Point(50, 12) }),
new HtmlPushpin(locs[1], htmlTemplate.replace('{text}', 'My Pushpin'), { anchor: new Microsoft.Maps.Point(50, 12) }),
new HtmlPushpin(locs[2], htmlTemplate.replace('{text}', 'HTML Rules!'), { anchor: new Microsoft.Maps.Point(50, 12) }),
new HtmlPushpin(locs[3], htmlTemplate.replace('{text}', 'Hoverable'), { anchor: new Microsoft.Maps.Point(50, 12) }),
new HtmlPushpin(locs[4], htmlTemplate.replace('{text}', 'Draggable Pushpin'), { anchor: new Microsoft.Maps.Point(50, 12), draggable: true })
];
Microsoft.Maps.Events.addHandler(pins[3], 'mouseover', function (e) {
infobox.setOptions({
location: e.target.getLocation(),
title: 'Pin Hovered',
visible: true
});
});
Microsoft.Maps.Events.addHandler(pins[3], 'mouseout', function (e) {
infobox.setOptions({ visible: false });
});
//Create an Html Pushpin Layer and pass in the array of pushpins.
layer = new HtmlPushpinLayer(pins);
//Add the HTML pushpin to the map.
map.layers.insert(layer);
});
}
var addedPinIdx = 1;
function AddPushpin() {
//Get a random location in the current map view.
var loc = Microsoft.Maps.TestDataGenerator.getLocations(1, map.getBounds());
//Create an Html Pushpin and add it to the layer.
layer.add(new HtmlPushpin(loc, htmlTemplate.replace('{text}', 'Add Pin: ' + addedPinIdx), { anchor: new Microsoft.Maps.Point(50, 12) }));
addedPinIdx++;
}
function BringIntoView() {
var bounds = layer.getBounds();
if (bounds) {
map.setView({ bounds: bounds, padding: 100 });
}
}
</script>
<style>
.htmlPushpin {
color:red;
background-color:white;
width:100px;
padding:2px;
text-align:center;
/* Disable the ability to select the text */
-webkit-user-select: none; /* Chrome all / Safari all */
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */
user-select: none; /* Likely future */
}
</style>
</head>
<body>
<div id="myMap" style="position:relative;width:100%;min-width:290px;height:600px;background-color:gray"></div>
<br/>
<input type="button" value="Add Pushpin" onclick="AddPushpin()"/>
<input type="button" value="Clear Layer" onclick="layer.clear();" />
<input type="button" value="Bring into View" onclick="BringIntoView();" />
<fieldset style="width:800px;margin-top:10px;">
<legend>HTML Pushpin Layer Sample</legend>
This sample shows how to create a custom layer for display HTML based pushpins using a Custom Overlay.
</fieldset>
<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>