Hi,
NT Maps have marker icons that are located in /web/images and have filenames like marker-icon-aqua.png, marker-icon-blue.png etc.
The markers are defined in d:\Clarion11\accessory\libsrc\win\NetWeb\web\scripts\jquery.nt-maps.js
I would like to add my own icons like the ones with letters shown on attached screenshot from my desktop map.
Since I only use 4 colours I *could* modify the unused icons in the shipping set, but I would rather add my own custom icons.
Is it possible to add additional js code somewhere, without modifying the shipping jquery.nt-maps.js. Something like this:
var myYellowVMarker = L.icon({
iconUrl: '/images/marker-icon-yellowV.png',
iconRetinaUrl: '/images/marker-icon-yellowV-2x.png',
shadowUrl: '/images/marker-shadow.png',
iconSize: [25, 41],
iconAnchor: [12, 41],
popupAnchor: [1, -34],
shadowSize: [41, 41]
});
Cheers
/Poul