0d1eae32be
Fix #5373. - Remove references to removed file "../../build/deps.js" - Update leaflet-include.js to point to "../dist/leaflet-src.js" - Update watch to use the same destination file as rollup (dist/leaflet-src.js) - Define getRandomLatLng where used
194 lines
5.8 KiB
HTML
194 lines
5.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Leaflet debug page</title>
|
|
|
|
<link rel="stylesheet" href="../../dist/leaflet.css" />
|
|
|
|
<link rel="stylesheet" href="../css/screen.css" />
|
|
|
|
<script src="../leaflet-include.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="map" style="width: 800px; height: 600px; border: 1px solid #ccc"></div>
|
|
<div style="background-color:chartreuse; width: 100px; height:100px; position: absolute; left: 850px; top: 10px" onclick="Hack1()">Hack1Touch</div>
|
|
<div style="background-color:coral; width: 100px; height:100px; position: absolute; left: 850px; top: 120px" onclick="Hack2()">Hack2Touch</div>
|
|
<div style="background-color:lightblue; width: 100px; height:100px; position: absolute; left: 850px; top: 230px" onclick="Hack3()">Hack3Touch</div>
|
|
<div style="background-color:lightpink; width: 100px; height:100px; position: absolute; left: 850px; top: 340px" onclick="Hack4()">Hack4Touch</div>
|
|
<div style="background-color:yellow; width: 100px; height:100px; position: absolute; left: 850px; top: 450px" onclick="alert(buffer)">Print Buffer</div>
|
|
<script src="route.js"></script>
|
|
<script>
|
|
//var buffer = "";
|
|
//console.log = function (text) {
|
|
// buffer += text + "\r\n";
|
|
//}
|
|
|
|
var osmUrl = 'http://{s}.tile.osm.org/{z}/{x}/{y}.png',
|
|
osm = new L.TileLayer(osmUrl, {maxZoom: 18}),
|
|
map = new L.Map('map', {layers: [osm], center: new L.LatLng(51.505, -0.04), zoom: 13});
|
|
|
|
|
|
var polygon = new L.Polygon([
|
|
new L.LatLng(51.51, -0.1),
|
|
new L.LatLng(51.5, -0.06),
|
|
new L.LatLng(51.52, -0.03)
|
|
]);
|
|
|
|
map.addLayer(polygon);
|
|
|
|
var polyline = new L.Polyline([
|
|
new L.LatLng(51.49, -0.02),
|
|
new L.LatLng(51.51, 0),
|
|
new L.LatLng(51.52, -0.02)
|
|
]);
|
|
|
|
map.addLayer(polyline);
|
|
|
|
polygon.on('edit', function() {
|
|
console.log('Polygon was edited!');
|
|
});
|
|
polyline.on('edit', function() {
|
|
console.log('Polyline was edited!');
|
|
});
|
|
|
|
var _timerAt, _timer;
|
|
function Hack1() {
|
|
_timerAt = 0;
|
|
clearInterval(_timer);
|
|
_timer = setInterval(Hack1Timer, 200);
|
|
}
|
|
function Hack1Timer() {
|
|
console.log(_timerAt);
|
|
switch (_timerAt) {
|
|
case 0:
|
|
map.touchZoom._onTouchStart({ touches: [{ pageX: 405, pageY: 312 }, { pageX: 233, pageY: 321 }] });
|
|
break;
|
|
case 1:
|
|
map.touchZoom._onTouchMove({ touches: [{ pageX: 452, pageY: 312 }, { pageX: 236, pageY: 322 }] });
|
|
break;
|
|
case 2:
|
|
map.touchZoom._onTouchEnd();
|
|
break;
|
|
case 3:
|
|
map.touchZoom._onTouchStart({ touches: [{ pageX: 423, pageY: 313 }, { pageX: 243, pageY: 321 }] });
|
|
break;
|
|
case 4:
|
|
map.touchZoom._onTouchMove({ touches: [{ pageX: 423, pageY: 313 }, { pageX: 243, pageY: 321 }] });
|
|
//map.touchZoom._onTouchMove({ touches: [{ pageX: 476, pageY: 326 }, { pageX: 299, pageY: 321 }] });
|
|
break;
|
|
case 5:
|
|
map.touchZoom._onTouchEnd();
|
|
break;
|
|
case 6:
|
|
clearInterval(_timer);
|
|
break;
|
|
}
|
|
_timerAt++;
|
|
}
|
|
function Hack2() {
|
|
_timerAt = 0;
|
|
clearInterval(_timer);
|
|
_timer = setInterval(Hack2Timer, 100);
|
|
}
|
|
function Hack2Timer() {
|
|
console.log(_timerAt);
|
|
switch (_timerAt) {
|
|
case 0:
|
|
map.touchZoom._onTouchStart({ touches: [{ pageX: 100, pageY: 100 }, { pageX: 50, pageY: 100}] });
|
|
break;
|
|
case 1:
|
|
map.touchZoom._onTouchMove({ touches: [{ pageX: 100, pageY: 100 }, { pageX: 50, pageY: 100 }] });
|
|
break;
|
|
case 2:
|
|
map.touchZoom._onTouchMove({ touches: [{ pageX: 110, pageY: 100 }, { pageX: 50, pageY: 100 }] });
|
|
break;
|
|
case 3:
|
|
map.touchZoom._onTouchMove({ touches: [{ pageX: 120, pageY: 100 }, { pageX: 50, pageY: 100 }] });
|
|
break;
|
|
case 4:
|
|
map.touchZoom._onTouchMove({ touches: [{ pageX: 130, pageY: 100 }, { pageX: 50, pageY: 100 }] });
|
|
break;
|
|
case 5:
|
|
map.touchZoom._onTouchMove({ touches: [{ pageX: 140, pageY: 100 }, { pageX: 50, pageY: 100 }] });
|
|
break;
|
|
case 6:
|
|
map.touchZoom._onTouchMove({ touches: [{ pageX: 150, pageY: 100 }, { pageX: 50, pageY: 100 }] });
|
|
break;
|
|
case 7:
|
|
map.touchZoom._onTouchEnd();
|
|
break;
|
|
case 8:
|
|
clearInterval(_timer);
|
|
break;
|
|
}
|
|
_timerAt++;
|
|
}
|
|
function Hack3() {
|
|
_timerAt = 0;
|
|
clearInterval(_timer);
|
|
_timer = setInterval(Hack3Timer, 100);
|
|
}
|
|
function Hack3Timer() {
|
|
console.log(_timerAt);
|
|
switch (_timerAt) {
|
|
case 0:
|
|
map.touchZoom._onTouchStart({ touches: [{ pageX: 405, pageY: 312 }, { pageX: 233, pageY: 321 }] });
|
|
break;
|
|
case 1:
|
|
map.touchZoom._onTouchMove({ touches: [{ pageX: 412, pageY: 312 }, { pageX: 236, pageY: 322 }] });
|
|
break;
|
|
case 2:
|
|
map.touchZoom._onTouchEnd();
|
|
break;
|
|
case 3:
|
|
map.touchZoom._onTouchStart({ touches: [{ pageX: 423, pageY: 313 }, { pageX: 243, pageY: 321 }] });
|
|
break;
|
|
case 4:
|
|
map.touchZoom._onTouchMove({ touches: [{ pageX: 476, pageY: 326 }, { pageX: 299, pageY: 321 }] });
|
|
break;
|
|
case 5:
|
|
map.touchZoom._onTouchEnd();
|
|
break;
|
|
case 6:
|
|
clearInterval(_timer);
|
|
break;
|
|
}
|
|
_timerAt++;
|
|
}
|
|
|
|
function Hack4() {
|
|
_timerAt = 0;
|
|
clearInterval(_timer);
|
|
_timer = setInterval(Hack4Timer, 40);
|
|
}
|
|
function Hack4Timer() {
|
|
console.log(_timerAt);
|
|
switch (_timerAt) {
|
|
case 0:
|
|
map.touchZoom._onTouchStart({ touches: [{ pageX: 405, pageY: 312 }, { pageX: 233, pageY: 321 }] });
|
|
break;
|
|
case 1:
|
|
map.touchZoom._onTouchMove({ touches: [{ pageX: 405, pageY: 312 }, { pageX: 236, pageY: 322 }] });
|
|
break;
|
|
case 2:
|
|
map.touchZoom._onTouchEnd();
|
|
break;
|
|
case 5:
|
|
map.touchZoom._onTouchStart({ touches: [{ pageX: 405, pageY: 312 }, { pageX: 233, pageY: 321 }] });
|
|
break;
|
|
case 6:
|
|
map.touchZoom._onTouchMove({ touches: [{ pageX: 405, pageY: 312 }, { pageX: 233, pageY: 321 }] });
|
|
break;
|
|
case 7:
|
|
map.touchZoom._onTouchEnd();
|
|
break;
|
|
case 8:
|
|
clearInterval(_timer);
|
|
break;
|
|
}
|
|
_timerAt++;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|