build: switch from yarn to npm to manage js dependencies and move js contents to root
yarn v1 is being deprecated and starts to have some issues Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
70
src/utils/poiIcons.ts
Normal file
70
src/utils/poiIcons.ts
Normal file
@@ -0,0 +1,70 @@
|
||||
export interface IPOIIcon {
|
||||
icon: string;
|
||||
color?: string;
|
||||
}
|
||||
|
||||
interface IPOIIcons {
|
||||
[key: string]: IPOIIcon;
|
||||
}
|
||||
|
||||
export const poiIcons: IPOIIcons = {
|
||||
default: {
|
||||
icon: "map-marker",
|
||||
color: "#5C6F84",
|
||||
},
|
||||
defaultAdministrative: {
|
||||
icon: "city",
|
||||
color: "#5c6f84",
|
||||
},
|
||||
defaultStreet: {
|
||||
icon: "road-variant",
|
||||
color: "#5c6f84",
|
||||
},
|
||||
defaultAddress: {
|
||||
icon: "home",
|
||||
color: "#5c6f84",
|
||||
},
|
||||
place_house: {
|
||||
icon: "home",
|
||||
color: "#5c6f84",
|
||||
},
|
||||
theatre: {
|
||||
icon: "drama-masks",
|
||||
},
|
||||
parking: {
|
||||
icon: "parking",
|
||||
},
|
||||
police: {
|
||||
icon: "police-badge",
|
||||
},
|
||||
post_office: {
|
||||
icon: "email",
|
||||
},
|
||||
university: {
|
||||
icon: "school",
|
||||
},
|
||||
college: {
|
||||
icon: "school",
|
||||
},
|
||||
park: {
|
||||
icon: "pine-tree",
|
||||
},
|
||||
garden: {
|
||||
icon: "pine-tree",
|
||||
},
|
||||
bicycle_rental: {
|
||||
icon: "bicycle",
|
||||
},
|
||||
hospital: {
|
||||
icon: "hospital-box",
|
||||
},
|
||||
townhall: {
|
||||
icon: "office-building",
|
||||
},
|
||||
toilets: {
|
||||
icon: "human-male-female",
|
||||
},
|
||||
hairdresser: {
|
||||
icon: "content-cut",
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user