-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpushpin_event.html
54 lines (45 loc) · 1.8 KB
/
pushpin_event.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pushpin-Event</title>
<style>html,body{height:100%;}body{padding:0;margin:0;}h1{padding:0;margin:0;font-size:50%;}</style>
</head>
<body>
<!-- MAP[START] -->
<h1>Pushpin-Event</h1>
<div id="myMap" style='width:60%;height:70%;float:left;'></div>
<!-- MAP[END] -->
<script src='https://www.bing.com/api/maps/mapcontrol?callback=GetMap&key=[ *** YOUR MY KEY *** ]' async defer></script>
<script src="../js/BmapQuery.js"></script>
<script>
//****************************************************************************************
// BingMaps&BmapQuery
//****************************************************************************************
//Init
function GetMap(){
//------------------------------------------------------------------------
//1. Instance
//------------------------------------------------------------------------
const map = new Bmap("#myMap");
//------------------------------------------------------------------------
//2. Display Map
//------------------------------------------------------------------------
map.startMap(47.6149, -122.1941, "load", 15); //The place is Bellevue.
//----------------------------------------------------
//3. Add Pushpin-Text
// pinText(lat, lon, "title", "subtitle", "text");
//----------------------------------------------------
let pin = map.pinText(47.6160, -122.1950, "title","subtitle","Click");
//----------------------------------------------------
//4. Add Pushpin-Event
// onPin(pushpin, "event", callback);
// event:[click,mousedown,mouseout,mouseover,mouseup]
//----------------------------------------------------
map.onPin(pin, "click", function(){
alert("Pushpin-Event!!");
});
}
</script>
</body>
</html>