1.0.0 • Published 2 years ago

canvas-markers v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

一 A fork of leaflet-canvas-markers

一 A JavaScript Integrated Leaflet Map API

Leaflet-canvas-markers

Adding all images to one canvas, together with the base L.CircleMarker! And you can create a direction arrow just by pointing to the previous waypoint.

Base Usage

const map = L.map('map', {preferCanvas: true}).setView([51.505, -0.09], 13);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map);

L.canvasMarker(L.latLng(51.495, -0.06), {
    radius: 20,
    opacity: 1,
    img: {
        url: 'icon.png',    //image link
        size: [40, 40],     //image size ( default [40, 40] )
        rotate: 10,         //image base rotate ( default 0 )
        offset: { x: 0, y: 0 }, //image offset ( default { x: 0, y: 0 } )
    },
}).addTo(map);

Options

OptionTypeDescription
imgObjectImage properties
prevLatlngLatLngThe coordinates of the previous point. If indicated - The image automatically shows the direction
opacityNumberThe opacity of the marker

Options img

OptionTypeDefaultDescription
urlStringImage link
sizeArray[40, 40]Image size in map
rotateNumber0Image rotate in map
offsetObject{ x: 0, y: 0 }Image offset in Canvas