Fist Push
This commit is contained in:
parent
dd63653413
commit
cab9de1e90
118 changed files with 364726 additions and 0 deletions
59
public/scripts/modules/iconsMap.js
Normal file
59
public/scripts/modules/iconsMap.js
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
const customIcons = {
|
||||
redCrossFullIcon: new L.Icon({
|
||||
iconUrl: "./icons/red_cross_full.png",
|
||||
iconSize: [9, 9],
|
||||
iconAnchor: [4.5, 4.5],
|
||||
}),
|
||||
redCrossVoidIcon: new L.Icon({
|
||||
iconUrl: "./icons/red_cross_void.png",
|
||||
iconSize: [9, 9],
|
||||
iconAnchor: [4.5, 4.5],
|
||||
}),
|
||||
blueCircleFullIcon: new L.Icon({
|
||||
iconUrl: "./icons/blue_circle_full.png",
|
||||
iconSize: [9, 9],
|
||||
iconAnchor: [4.5, 4.5],
|
||||
}),
|
||||
blueCircleVoidIcon: new L.Icon({
|
||||
iconUrl: "./icons/blue_circle_void.png",
|
||||
iconSize: [9, 9],
|
||||
iconAnchor: [4.5, 4.5],
|
||||
}),
|
||||
blueCrossFullIcon: new L.Icon({
|
||||
iconUrl: "./icons/blue_cross_full.png",
|
||||
iconSize: [9, 9],
|
||||
iconAnchor: [4.5, 4.5],
|
||||
}),
|
||||
greySquareIcon: new L.Icon({
|
||||
iconUrl: "./icons/grey_square.png",
|
||||
iconSize: [9, 9],
|
||||
iconAnchor: [4.5, 4.5],
|
||||
}),
|
||||
yellowSquareFullIcon: new L.Icon({
|
||||
iconUrl: "./icons/yellow_square_full.png",
|
||||
iconSize: [9, 9],
|
||||
iconAnchor: [4.5, 4.5],
|
||||
}),
|
||||
yellowSquareVoidIcon: new L.Icon({
|
||||
iconUrl: "./icons/yellow_square_void.png",
|
||||
iconSize: [9, 9],
|
||||
iconAnchor: [4.5, 4.5],
|
||||
}),
|
||||
yellowCrownIcon: new L.Icon({
|
||||
iconUrl: "./icons/yellow_crown.png",
|
||||
iconSize: [9, 9],
|
||||
iconAnchor: [4.5, 4.5],
|
||||
}),
|
||||
greenPlayer: new L.Icon({
|
||||
iconUrl: "./icons/green_circle_full.png",
|
||||
iconSize: [9, 9],
|
||||
iconAnchor: [4.5, 4.5],
|
||||
}),
|
||||
yellowNpc: new L.Icon({
|
||||
iconUrl: "./icons/yellow_star_big.png",
|
||||
iconSize: [9, 9],
|
||||
iconAnchor: [4.5, 4.5],
|
||||
}),
|
||||
};
|
||||
|
||||
export default customIcons;
|
||||
Loading…
Add table
Add a link
Reference in a new issue