
Security News
pnpm 10.16 Adds New Setting for Delayed Dependency Updates
pnpm's new minimumReleaseAge setting delays package updates to prevent supply chain attacks, with other tools like Taze and NCU following suit.
leaflet-trackplayer-xiaoai
Advanced tools
一个 Leaflet 轨迹播放插件,可以根据实际行进方向自动旋转标记图标,动态调整已行进和未行进路径的颜色以清晰显示当前进度。支持自定义行驶速度等功能,并提供完整的 TypeScript 类型定义。
A Leaflet track playback plugin, enabling you to swiftly create stunning track replay functionality.
一个leaflet轨迹回放插件,帮助你快速构建出精美的轨迹回放功能。
https://weijun-lab.github.io/Leaflet.TrackPlayer/
npm install leaflet-trackplayer
import "leaflet-trackplayer";
<script src="Leaflet.TrackPlayer/dist/leaflet-trackplayer.umd.cjs"></script>
let track = new L.TrackPlayer(latlngs, options).addTo(map)
let latlngs = [
[
34.291120985630914,
108.91770583134237
],
[
34.29428596006031,
108.9177058265846
],
];
let track = new L.TrackPlayer(latlngs, {
markerIcon: L.icon({
iconUrl: "Your image url",
}),
markerRotation: false,
}).addTo(map);
track.start();
track.on("progress",(progress, { lng, lat },index)=>{{
console.log(`progress:${progress} - position:${lng},${lat} - trackIndex:${index}`)
})
An array of latitude and longitude data for the trajectory, which is the same as the first parameter for L.polyline
.
Options | Type | Default | Description |
---|---|---|---|
speed | Number | 600 | Travel speed (km/h) |
weight | Number | 8 | Width of the trajectory line |
markerIcon | L.icon | - | The icon of the moving marker during playback has a value equivalent to the 'icon' property of the L.marker . |
polylineDecoratorOptions | Object | {...} | Arrowhead styles for the trajectory line, seeLeaflet.PolylineDecorator |
passedLineColor | String | #0000ff | Color of the traveled portion of the trajectory line |
notPassedLineColor | String | #ff0000 | Color of the untraveled portion of the trajectory line |
panTo | Boolean | true | Whether the map view follows the moving marke |
markerRotation | Boolean | true | Whether the marker auto-rotates according to the direction of movement |
markerRotationOrigin | String | center | The rotation origin of the marker, follows the CSS transform-origin rule |
markerRotationOffset | Number | 0 | The angle offset for marker rotation |
Methods | Return | Description |
---|---|---|
start() | - | Start playback |
pause() | - | Pause playback |
setSpeed(<Number> speed,<Number> debounceTimeout? ) | - | Set the playback speed (km/h) |
setProgress(<Number> progress ) | - | Set the playback progress value to 0-1 |
addTo(<Map> map ) | this | Adds the track player to the map |
remove() | - | Removes the track player from the map |
on(<String> type,<Function> fn ) | - | Adds a listener function to the specified event type |
off(<String> type,<Function> fn? ) | - | Removes the passed-in listener function. If no function is specified, removes all listeners for the event type. |
Event | Description |
---|---|
start | Triggered when playback starts |
pause | Triggered when playback is paused |
finished | Triggered when playback completes |
progress | Triggered during playback; receives the progress(0-1) and current location and track array index in the callback function |
Properties | Type | Description |
---|---|---|
marker | L.marker | Moving marker on the trajectory |
passedLine | L.polyline | The traveled part of the trajectory line |
notPassedLine | L.polyline | The untraveled part of the trajectory line |
polylineDecorator | L.polylineDecorator | The arrowhead-decorated polyline |
options | Object | Configuration options |
I gratitude to the following open-source plugins, which have provided essential support for the functionality.
FAQs
一个 Leaflet 轨迹播放插件,可以根据实际行进方向自动旋转标记图标,动态调整已行进和未行进路径的颜色以清晰显示当前进度。支持自定义行驶速度等功能,并提供完整的 TypeScript 类型定义。
We found that leaflet-trackplayer-xiaoai demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
pnpm's new minimumReleaseAge setting delays package updates to prevent supply chain attacks, with other tools like Taze and NCU following suit.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.