Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Realtime Tracking</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>Realtime Tracking</h1> | |
<div id="myMap" style='width:60%;height:70%;float:left;'></div> | |
<button id="start_tracking">Start Tracking</button> | |
<button id="stop_tracking">Stop Tracking</button> | |
<!-- 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 | |
// startMap(lat, lon, "MapType", Zoom[1~20]); | |
// MapType:[load, aerial,canvasDark,canvasLight,birdseye,grayscale,streetside] | |
//------------------------------------------------------------------------ | |
map.startMap(47.6149, -122.1941, "load", 17); | |
//------------------------------------------------------------------------ | |
//3. Tracking Event | |
//------------------------------------------------------------------------ | |
//Start | |
document.getElementById("start_tracking").onclick=function(){ | |
map.startTracking(true); //console.log => true or false | |
} | |
//Stop | |
document.getElementById("stop_tracking").onclick=function(){ | |
map.stopTracking(); | |
} | |
} | |
</script> | |
</body> | |
</html> |