# mapbox-plugins **Repository Path**: sdalxn/mapbox-plugins ## Basic Information - **Project Name**: mapbox-plugins - **Description**: Customized Mapbox :earth_asia: plugins, including game :video_game: control, canvasOverlayer , scene animation. using ES6 - **Primary Language**: JavaScript - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-07-23 - **Last Updated**: 2022-11-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # mapbox-plugins ![travisStatus](https://travis-ci.org/alex2wong/mapbox-plugins.svg?branch=master) [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Falex2wong%2Fmapbox-plugins.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Falex2wong%2Fmapbox-plugins?ref=badge_shield) Customized Mapbox plugins, including game control, canvasOverlayer, scene animation https://alex2wong.github.io/mapbox-plugins/ [API Docs](https://alex2wong.github.io/mapbox-plugins/docs/) For more detailed wiki, pls read **issue blogs**: - [canvas wind layer](https://github.com/alex2wong/mapbox-plugins/issues/3) - [canvas line style](https://github.com/alex2wong/mapbox-plugins/issues/4) Note: pls visit all demo with **HTTPS**.. ![Point animation](https://github.com/alex2wong/mapbox-plugins/blob/master/assets/demo/point.gif) ![Custom popup/Route animation](https://github.com/alex2wong/mapbox-plugins/blob/master/assets/demo/popup.gif) ![Chartjs integration](https://github.com/alex2wong/mapbox-plugins/blob/master/assets/demo/chart.gif) ![Glow animation](https://github.com/alex2wong/mapbox-plugins/blob/master/assets/demo/glow.gif) ![Rbush demo](https://github.com/alex2wong/mapbox-plugins/blob/master/assets/demo/rbush.gif) ![Canvas Line Style](https://github.com/alex2wong/mapbox-plugins/blob/master/assets/canvasLine.jpg) canvas line style which can be integrate to any map/chart lib. ![Voxelize terrain data](https://upload-images.jianshu.io/upload_images/1950967-27728165c2bedf82.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1000/format/webp) 👆 Voxelize terrain data from a height image. ## Online demo [placeholder]:p | Demo | Code | | :-------- | :--------:| | [Sprite track DEMO](https://alex2wong.github.io/mapbox-plugins/examples/sprite) | [view code](https://github.com/alex2wong/mapbox-plugins/tree/master/examples/sprite) | | [Custom dom overlay DEMO](https://alex2wong.github.io/mapbox-plugins/examples/domoverlay) | [view code](https://github.com/alex2wong/mapbox-plugins/tree/master/examples/domoverlay) | | [R-tree search (5000 rectangles) DEMO](https://alex2wong.github.io/mapbox-plugins/examples/rbush) | [view code](https://github.com/alex2wong/mapbox-plugins/tree/master/examples/rbush) | | [Global Wind Layer. render 1w point animation with Canvas](https://alex2wong.github.io/mapbox-plugins/examples/windLayer) | [view code](https://github.com/alex2wong/mapbox-plugins/tree/master/examples/windLayer) | | [Integrate with Chart.js](https://alex2wong.github.io/mapbox-plugins/examples/chartlayer) | [view code](https://github.com/alex2wong/mapbox-plugins/tree/master/examples/chartlayer) | | [Glow animation](https://alex2wong.github.io/mapbox-plugins/examples/glowstyle) | [view code](https://github.com/alex2wong/mapbox-plugins/tree/master/examples/glowstyle) | | [Cool Route Animation](https://alex2wong.github.io/mapbox-plugins/examples/line_animation) | [view code](https://github.com/alex2wong/mapbox-plugins/tree/master/examples/line_animation) | | [Canvas Line Style](https://alex2wong.github.io/mapbox-plugins/examples/line_style/) | [view code](https://github.com/alex2wong/mapbox-plugins/blob/master/examples/line_style/index.html) | | [Canvas Staring Demo](https://alex2wong.github.io/mapbox-plugins/examples/particle_mask/) || | [Tilting Ui Marker](https://alex2wong.github.io/mapbox-plugins/examples/vectortile/)|[view code](https://github.com/alex2wong/mapbox-plugins/blob/master/examples/vectortile/index.html)| ## run locally > npm install > npm run dev then visit from localhost:8080/examples/, HotModuleReload supported. > npm run build to Build all plugins into bundle.js with namespace: Mapbox ## how to use plugins provide canvasOverlay, domOverlay ,Sprite, gameControl extension etc. for example: ```javascript // 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(); ``` ### Any **☆Star, Enhancement and PR** are welcome :)