mapbox-plugins
Customized Mapbox plugins, including game control, canvasOverlayer, scene animation
https://alex2wong.github.io/mapbox-plugins/
Note: pls visit all demo with HTTPS..
canvas line style which can be integrate to any map/chart lib.
Online demo
run locally
npm install
npm start
visit from localhost:8080/examples/
how to use
plugins provide canvasOverlay, domOverlay ,Sprite, gameControl extension etc. for example:
// create a CanvasOverlayer on Mapbox map instance..
var canvasLayer = new Mapbox.CanvasOverlayer({
map: map,
shadow: false,
keepTrack: true,
blurWidth: 4
});
// create a Drone inherites Sprite Class
var drone = new Mapbox.Drone({
direction: 45,
icon: "https://alex2wong.github.io/mapbox-plugins/assets/tri2.png"
});
// add keyboard control to Sprite.
Mapbox.Controllers.gameControl(drone);
function update(){
drone.updateStatus();
// render drone on canvasLayer.
canvasLayer.redraw([drone]);
requestAnimationFrame(update);
}
update();