@geops/rvf-mobility-web-component 0.1.12 → 0.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. package/CHANGELOG.md +47 -0
  2. package/index.html +1 -1
  3. package/index.js +340 -219
  4. package/input.css +2 -8
  5. package/package.json +18 -16
  6. package/scripts/build.mjs +0 -1
  7. package/scripts/dev.mjs +2 -1
  8. package/src/RouteSchedule/RouteSchedule.tsx +3 -1
  9. package/src/RouteStop/RouteStop.tsx +1 -1
  10. package/src/RvfButton/RvfButton.tsx +6 -3
  11. package/src/RvfCheckbox/RvfCheckbox.tsx +10 -3
  12. package/src/RvfExportMenu/RvfExportMenu.tsx +62 -68
  13. package/src/RvfFloatingMenu/RvfFloatingMenu.tsx +3 -3
  14. package/src/RvfIconButton/RvfIconButton.tsx +5 -2
  15. package/src/RvfInputCopy/RvfInputCopy.tsx +57 -0
  16. package/src/RvfInputCopy/index.tsx +1 -0
  17. package/src/RvfLayerTree/RvfLayerTree.tsx +5 -9
  18. package/src/RvfLayerTree/TreeItem/TreeItem.tsx +39 -9
  19. package/src/RvfLayerTree/layersTreeReducer.ts +1 -0
  20. package/src/RvfLayerTreeButton/RvfLayerTreeButton.tsx +27 -0
  21. package/src/RvfLayerTreeButton/index.tsx +1 -0
  22. package/src/RvfLineNetworkPlanLayer/RvfLineNetworkPlanLayer.tsx +9 -5
  23. package/src/RvfMobilityMap/RvfMobilityMap.tsx +253 -35
  24. package/src/RvfOverlayHeader/RvfOverlayHeader.tsx +40 -0
  25. package/src/RvfOverlayHeader/index.tsx +1 -0
  26. package/src/RvfPermalink/RvfPermalink.tsx +18 -0
  27. package/src/RvfPermalink/index.tsx +1 -0
  28. package/src/RvfPoisLayer/RvfPoisLayer.tsx +6 -0
  29. package/src/RvfRadioButton/RvfRadioButton.tsx +1 -1
  30. package/src/RvfSelect/RvfSelect.tsx +2 -2
  31. package/src/RvfSellingPointsLayer/RvfSellingPointsLayer.tsx +25 -6
  32. package/src/RvfShare/RvfPermalinkButton/RvfPermalinkButton.tsx +61 -0
  33. package/src/RvfShare/RvfPermalinkButton/index.tsx +1 -0
  34. package/src/RvfShare/RvfShare.tsx +40 -0
  35. package/src/RvfShare/index.tsx +1 -0
  36. package/src/RvfShareMenuButton/RvfShareMenuButton.tsx +27 -0
  37. package/src/RvfShareMenuButton/index.tsx +1 -0
  38. package/src/RvfSharedMobilityLayerGroup/RvfSharedMobilityLayerGroup.tsx +137 -51
  39. package/src/RvfSingleClickListener/RvfSingleClickListener.tsx +10 -2
  40. package/src/RvfTarifZonenLayer/RvfTarifZonenLayer.tsx +9 -5
  41. package/src/RvfTopics/RvfTopics.tsx +21 -24
  42. package/src/icons/Automat/Automat.tsx +8 -0
  43. package/src/icons/Automat/index.tsx +1 -0
  44. package/src/icons/Automat/rvf_automat.svg +15 -0
  45. package/src/icons/Bike/Bike.tsx +8 -0
  46. package/src/icons/Bike/index.tsx +1 -0
  47. package/src/icons/Bike/rvf_shared_bike.svg +15 -0
  48. package/src/icons/Car/Car.tsx +8 -0
  49. package/src/icons/Car/index.tsx +1 -0
  50. package/src/icons/Car/rvf_shared_car.svg +16 -0
  51. package/src/icons/CargoBike/CargoBike.tsx +8 -0
  52. package/src/icons/CargoBike/index.tsx +1 -0
  53. package/src/icons/CargoBike/rvf_shared_cargo_bike.svg +16 -0
  54. package/src/icons/Copy/Copy.tsx +25 -0
  55. package/src/icons/Copy/index.tsx +1 -0
  56. package/src/icons/Doc/Doc.tsx +19 -0
  57. package/src/icons/Doc/doc.svg +7 -0
  58. package/src/icons/Doc/index.tsx +1 -0
  59. package/src/icons/Ebike/Ebike.tsx +8 -0
  60. package/src/icons/Ebike/index.tsx +1 -0
  61. package/src/icons/Ebike/rvf_shared_e-bike.svg +15 -0
  62. package/src/icons/Email/Email.tsx +19 -0
  63. package/src/icons/Email/email.svg +7 -0
  64. package/src/icons/Email/index.tsx +1 -0
  65. package/src/icons/FilePdf/FilePdf.tsx +19 -0
  66. package/src/icons/FilePdf/file-pdf.svg +7 -0
  67. package/src/icons/FilePdf/index.tsx +1 -0
  68. package/src/icons/Image/Image.tsx +24 -0
  69. package/src/icons/Image/index.tsx +1 -0
  70. package/src/icons/InPerson/InPerson.tsx +8 -0
  71. package/src/icons/InPerson/index.tsx +1 -0
  72. package/src/icons/InPerson/rvf_persoenlich.svg +17 -0
  73. package/src/icons/Minus/minus-grey.svg +7 -0
  74. package/src/icons/Ride/Ride.tsx +8 -0
  75. package/src/icons/Ride/index.tsx +1 -0
  76. package/src/icons/Ride/rvf_shared_ride.svg +15 -0
  77. package/src/icons/Scooter/Scooter.tsx +8 -0
  78. package/src/icons/Scooter/index.tsx +1 -0
  79. package/src/icons/Scooter/rvf_shared_scooter.svg +15 -0
  80. package/src/icons/Share/Share.tsx +24 -0
  81. package/src/icons/Share/index.tsx +1 -0
  82. package/src/icons/Stack/Stack.tsx +24 -0
  83. package/src/icons/Stack/index.tsx +1 -0
  84. package/src/icons/Video/Video.tsx +8 -0
  85. package/src/icons/Video/index.tsx +1 -0
  86. package/src/icons/Video/rvf_video.svg +19 -0
  87. package/src/icons/rvf_shared_ride_2.svg +12 -0
  88. package/src/utils/constants.ts +2 -0
  89. package/src/utils/createMobiDataBwWfsLayer.ts +28 -20
  90. package/src/utils/createSharedMobilityLayer.ts +44 -33
  91. package/src/utils/exportPdf.ts +11 -0
  92. package/src/utils/getAllLayers.ts +25 -0
  93. package/src/utils/hooks/useRvfContext.tsx +45 -0
  94. package/tailwind.config.mjs +32 -29
  95. package/src/FloatingMenu/FloatingMenu.tsx +0 -42
  96. package/src/FloatingMenu/index.tsx +0 -1
  97. package/src/icons/Bicycle/verkehrstraeger-rad-2px-white.svg +0 -19
  98. package/src/icons/Car/verkehrstraeger-auto-2px-white.svg +0 -14
  99. package/src/icons/CargoBicycle/verkehrstraeger-lastenrad-2px-white.svg +0 -27
  100. package/src/icons/Scooter/scooter.svg +0 -10
@@ -1,29 +1,74 @@
1
+ import { MaplibreStyleLayer } from "mobility-toolbox-js/ol";
1
2
  import { Feature } from "ol";
3
+ import { Group } from "ol/layer";
2
4
  import { createContext } from "preact";
3
5
  import { useContext } from "preact/hooks";
4
6
 
5
7
  export interface RvfContextType {
6
8
  isExportMenuOpen: boolean;
9
+ isLayerTreeOpen: boolean;
10
+ isShareMenuOpen: boolean;
11
+ lineNetworkPlanLayer: MaplibreStyleLayer;
12
+ poisLayer: MaplibreStyleLayer;
7
13
  selectedFeature: Feature;
8
14
  selectedFeatures: Feature[];
15
+ sellingPointsLayer: MaplibreStyleLayer;
9
16
  setIsExportMenuOpen: (isOpen: boolean) => void;
17
+ setIsLayerTreeOpen: (isOpen: boolean) => void;
18
+ setIsShareMenuOpen: (isOpen: boolean) => void;
19
+ setLineNetworkPlanLayer: (layer: MaplibreStyleLayer) => void;
20
+ setPoisLayer: (layer: MaplibreStyleLayer) => void;
10
21
  setSelectedFeature: (feature: Feature) => void;
11
22
  setSelectedFeatures: (features: Feature[]) => void;
23
+ setSellingPointsLayer: (layer: MaplibreStyleLayer) => void;
24
+ setSharedMobilityLayerGroup: (group: Group) => void;
25
+ setTarifZonenLayer: (layer: MaplibreStyleLayer) => void;
26
+ sharedMobilityLayerGroup: Group;
27
+ tarifZonenLayer: MaplibreStyleLayer;
12
28
  }
13
29
 
14
30
  export const RvfContext = createContext<RvfContextType>({
15
31
  isExportMenuOpen: false,
32
+ isLayerTreeOpen: false,
33
+ isShareMenuOpen: false,
34
+ lineNetworkPlanLayer: null,
35
+ poisLayer: null,
16
36
  selectedFeature: null,
17
37
  selectedFeatures: [],
38
+ sellingPointsLayer: null,
18
39
  setIsExportMenuOpen: () => {
19
40
  console.warn("setIsExportMenuOpen is not implemented");
20
41
  },
42
+ setIsLayerTreeOpen: () => {
43
+ console.warn("setIsLayerTreeOpen is not implemented");
44
+ },
45
+ setIsShareMenuOpen: () => {
46
+ console.warn("setIsShareMenuOpen is not implemented");
47
+ },
48
+ setLineNetworkPlanLayer: () => {
49
+ console.warn("setLineNetworkPlanLayer is not implemented");
50
+ },
51
+ setPoisLayer: () => {
52
+ console.warn("setPoisLayer is not implemented");
53
+ },
21
54
  setSelectedFeature: () => {
22
55
  console.warn("setSelectedFeature is not implemented");
23
56
  },
24
57
  setSelectedFeatures: () => {
25
58
  console.warn("setSelectedFeatures is not implemented");
26
59
  },
60
+
61
+ setSellingPointsLayer: () => {
62
+ console.warn("setSellingPointsLayer is not implemented");
63
+ },
64
+ setSharedMobilityLayerGroup: () => {
65
+ console.warn("setSharedMobilityLayerGroup is not implemented");
66
+ },
67
+ setTarifZonenLayer: () => {
68
+ console.warn("setTarifZonenLayer is not implemented");
69
+ },
70
+ sharedMobilityLayerGroup: null,
71
+ tarifZonenLayer: null,
27
72
  });
28
73
 
29
74
  const useRvfContext = (): RvfContextType => {
@@ -11,13 +11,13 @@ const getClamp = (min, max) => {
11
11
  min +
12
12
  "px + (" +
13
13
  max +
14
- "-" +
14
+ " - " +
15
15
  min +
16
- ") * (100vw - " +
16
+ ") * (100cqw - " +
17
17
  minScreenSize +
18
- "px)/( " +
18
+ "px) / ( " +
19
19
  maxScreenSize +
20
- "-" +
20
+ " - " +
21
21
  minScreenSize +
22
22
  ")), " +
23
23
  max +
@@ -25,6 +25,28 @@ const getClamp = (min, max) => {
25
25
  );
26
26
  };
27
27
 
28
+ // const getClamp = (min, max) => {
29
+ // return (
30
+ // "clamp(" +
31
+ // min +
32
+ // "px, calc(" +
33
+ // min +
34
+ // "px + (" +
35
+ // max +
36
+ // "-" +
37
+ // min +
38
+ // ") * (100vw - " +
39
+ // minScreenSize +
40
+ // "px)/( " +
41
+ // maxScreenSize +
42
+ // "-" +
43
+ // minScreenSize +
44
+ // ")), " +
45
+ // max +
46
+ // "px )"
47
+ // );
48
+ // };
49
+
28
50
  export default {
29
51
  plugins: [containerQueries],
30
52
  theme: {
@@ -39,33 +61,13 @@ export default {
39
61
  ultradarkgray: "#2D2D2C", // another grey with no name
40
62
  ultralightgrey: "#F5F5F5", // ultralight grey
41
63
  },
42
- height: {
43
- innerControl: "12px",
44
- inputControl: "20px",
45
- },
46
- margin: {
47
- "4px": "4px",
48
- "7px": "7px",
49
- },
50
- maxHeight: {
51
- button: "40px",
52
- },
53
- maxWidth: {
54
- button: "40px",
55
- },
56
- padding: {
57
- 1.75: "7px",
58
- },
59
- screens: {
60
- large: "993px",
61
- medium: "577px",
64
+ rounded: {
65
+ xl: "12px",
62
66
  },
63
67
  width: {
64
- check: "6px",
65
- innerControl: "12px",
66
- inputControl: "20px",
67
- largeMenu: "350px",
68
- mediumMenu: "300px",
68
+ 10: "40px", // for Route Schedule
69
+ 8: "32px", // for Route Schedule
70
+ 9: "36px", // for Route Schedule
69
71
  },
70
72
  },
71
73
  fontFamily: {
@@ -84,6 +86,7 @@ export default {
84
86
  lg: getClamp(19, 25), // H4
85
87
  sm: getClamp(13, 15), // small
86
88
  xl: getClamp(24, 31), // h3
89
+ xs: getClamp(13, 15), // small
87
90
  },
88
91
  },
89
92
  };
@@ -1,42 +0,0 @@
1
- import { useState } from "preact/hooks";
2
-
3
- import ArrowDown from "../icons/ArrowDown";
4
- import ArrowUp from "../icons/ArrowUp";
5
- import Topics from "../RvfTopics";
6
- import useMapContext from "../utils/hooks/useMapContext";
7
-
8
- function FloatingMenu() {
9
- const { map } = useMapContext();
10
- const [isCollapsed, setIsCollapsed] = useState(true);
11
-
12
- if (!map) {
13
- return null;
14
- }
15
-
16
- return (
17
- <div className="pointer-events-none absolute bottom-8 left-2 top-2 z-10 flex flex-col overflow-hidden rounded-lg">
18
- <div
19
- className="pointer-events-auto max-h-full rounded-lg border bg-white shadow-lg medium:w-largeMenu large:w-mediumMenu"
20
-
21
- // className="flex-column absolute left-2 top-2 z-10 max-h-80 rounded-lg bg-white px-2 py-1.5 shadow-lg medium:w-largeMenu large:w-mediumMenu"
22
- >
23
- <button
24
- className="flex w-full items-center justify-between px-2 py-1.5 "
25
- onClick={() => {
26
- return setIsCollapsed(!isCollapsed);
27
- }}
28
- >
29
- <span>Kartendaten</span>
30
- {isCollapsed ? <ArrowDown /> : <ArrowUp />}
31
- </button>
32
- {!isCollapsed && (
33
- <div className="flex h-[calc(100%-39px)] w-full flex-1 overflow-y-auto">
34
- <Topics />
35
- </div>
36
- )}
37
- </div>
38
- </div>
39
- );
40
- }
41
-
42
- export default FloatingMenu;
@@ -1 +0,0 @@
1
- export { default } from "./FloatingMenu";
@@ -1,19 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>verkehrstraeger/verkehrstraeger-rad-2px</title>
4
- <defs>
5
- <polygon id="path-1" points="0 0 22.9996 0 22.9996 15.0753189 0 15.0753189"></polygon>
6
- </defs>
7
- <g id="verkehrstraeger/verkehrstraeger-rad-2px" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
- <g id="Group-6" transform="translate(0.500200, 6.004653)">
9
- <path d="M6.4996,5.57581889 L7.5946,5.57581889 L8.4996,5.57581889 C9.0516,5.57581889 9.4996,5.12781889 9.4996,4.57581889 C9.4996,4.02381889 9.0516,3.57581889 8.4996,3.57581889 L6.4996,3.57581889 C6.4806,3.57581889 6.4646,3.58581889 6.4466,3.58681889 C5.9206,3.61581889 5.4996,4.04281889 5.4996,4.57581889 C5.4996,5.12781889 5.9476,5.57581889 6.4996,5.57581889" id="Fill-1" fill="#ffffff"></path>
10
- <g id="Group-5">
11
- <mask id="mask-2" fill="white">
12
- <use xlink:href="#path-1"></use>
13
- </mask>
14
- <g id="Clip-4"></g>
15
- <path d="M19.36,12.9143189 C19.091,13.0133189 18.803,13.0753189 18.5,13.0753189 C17.864,13.0753189 17.29,12.8313189 16.849,12.4403189 C16.332,11.9823189 16,11.3213189 16,10.5753189 C16,10.0033189 16.199,9.48231889 16.523,9.06131889 L17.62,10.9623189 C17.819,11.3063189 18.191,11.4793189 18.562,11.4513189 C18.707,11.4413189 18.852,11.4063189 18.986,11.3283189 C19.121,11.2513189 19.223,11.1433189 19.305,11.0233189 C19.515,10.7153189 19.551,10.3063189 19.352,9.96231889 L18.276,8.09831889 C18.351,8.09131889 18.423,8.07531889 18.5,8.07531889 C19.033,8.07531889 19.524,8.24531889 19.93,8.52931889 C20.575,8.98231889 21,9.72831889 21,10.5753189 C21,11.3543189 20.636,12.0413189 20.078,12.4993189 L19.36,12.9143189 Z M7,10.5753189 C7,11.9563189 5.88,13.0753189 4.5,13.0753189 C3.119,13.0753189 2,11.9563189 2,10.5753189 C2,9.19531889 3.119,8.07531889 4.5,8.07531889 C5.067,8.07531889 5.585,8.27231889 6.004,8.59131889 L3.866,9.82531889 C3.387,10.1023189 3.223,10.7133189 3.5,11.1923189 C3.776,11.6703189 4.387,11.8343189 4.866,11.5583189 L6.976,10.3393189 C6.983,10.4183189 7,10.4953189 7,10.5753189 L7,10.5753189 Z M18.514,6.07731889 C18.509,6.07731889 18.505,6.07531889 18.5,6.07531889 C18.054,6.07531889 17.633,6.16031889 17.227,6.28131889 L15.807,3.82131889 L14.845,2.15531889 L15.551,1.96631889 C15.727,1.91931889 15.866,1.81831889 15.986,1.69831889 C16.231,1.45431889 16.354,1.10031889 16.258,0.741318889 C16.115,0.208318889 15.567,-0.108681111 15.034,0.0343188886 L15.027,0.0363188886 L13.102,0.552318889 C12.615,0.682318889 12.317,1.15731889 12.376,1.64331889 C12.381,1.68831889 12.398,1.78231889 12.399,1.78531889 C12.419,1.89431889 12.448,2.00331889 12.506,2.10531889 L13.689,4.15431889 L12.93,4.59231889 L10.5,5.99531889 L9.495,6.57531889 L8.503,7.14831889 L7.809,7.54931889 C7.444,7.14931889 7.008,6.82331889 6.521,6.57531889 C5.911,6.26631889 5.23,6.07531889 4.5,6.07531889 C2.626,6.07531889 1.023,7.22131889 0.345,8.84931889 C0.124,9.38131889 0,9.96331889 0,10.5753189 C0,12.8573189 1.704,14.7223189 3.906,15.0163189 C4.102,15.0423189 4.296,15.0753189 4.5,15.0753189 C6.985,15.0753189 9,13.0613189 9,10.5753189 C9,10.1263189 8.914,9.70131889 8.791,9.29131889 L9.503,8.88031889 L14.689,5.88631889 L15.482,7.25831889 C14.577,8.08131889 14,9.25631889 14,10.5753189 C14,11.6813189 14.414,12.6813189 15.076,13.4643189 C15.464,13.9243189 15.938,14.3023189 16.48,14.5773189 C17.09,14.8853189 17.769,15.0753189 18.5,15.0753189 C20.899,15.0753189 22.841,13.1933189 22.974,10.8273189 C22.979,10.7423189 23,10.6623189 23,10.5753189 C23,8.09531889 20.992,6.08531889 18.514,6.07731889 L18.514,6.07731889 Z" id="Fill-3" fill="#ffffff" mask="url(#mask-2)"></path>
16
- </g>
17
- </g>
18
- </g>
19
- </svg>
@@ -1,14 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>verkehrstraeger/verkehrstraeger-auto-2px</title>
4
- <g id="verkehrstraeger/verkehrstraeger-auto-2px" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Group-13" transform="translate(1.000000, 5.009165)" fill="#ffffff">
6
- <path d="M17,10 C17.552,10 18,10.448 18,11 C18,11.552 17.552,12 17,12 C16.448,12 16,11.552 16,11 C16,10.448 16.448,10 17,10" id="Fill-1"></path>
7
- <path d="M17,12 C17.552,12 18,11.552 18,11 C18,10.448 17.552,10 17,10 C16.448,10 16,10.448 16,11 C16,11.552 16.448,12 17,12" id="Fill-3"></path>
8
- <path d="M5,12 C4.448,12 4,11.552 4,11 C4,10.448 4.448,10 5,10 C5.552,10 6,10.448 6,11 C6,11.552 5.552,12 5,12" id="Fill-5"></path>
9
- <path d="M5,10 C4.448,10 4,10.448 4,11 C4,11.552 4.448,12 5,12 C5.552,12 6,11.552 6,11 C6,10.448 5.552,10 5,10" id="Fill-7"></path>
10
- <path d="M15,12.9959 L15,12.9999 L15.061,12.9999 C15.054,12.9999 15.048,12.9959 15.041,12.9959 L15,12.9959 Z" id="Fill-9"></path>
11
- <path d="M19,9 L19,13 L19,14 C19,14.552 18.552,15 18,15 L16.041,15 L16.041,13.996 C16.041,13.451 15.603,13.011 15.061,13 L15,13 L15,12.996 L7.048,12.996 C6.496,12.996 6.048,13.444 6.048,13.996 L6.048,15 L4,15 C3.448,15 3,14.552 3,14 L3,13 L3,9 L3.435,8 L3.852,7.044 L5,7.618 L5.342,7.789 L5.511,7.864 C5.742,7.954 5.988,8 6.236,8 L15.764,8 L15.95,7.991 C16.196,7.968 16.436,7.9 16.658,7.789 L17,7.618 L18.169,7.034 L18.577,8 L19,9 Z M5,4.406 L5.786,2.601 C5.945,2.236 6.305,2 6.703,2 L15.378,2 C15.78,2 16.142,2.24 16.299,2.611 L17,4.269 L17.388,5.188 L17,5.382 L15.764,6 L6.236,6 L5,5.382 L4.651,5.208 L5,4.406 Z M21,5 L19.48,5 L19.058,4 L18.141,1.832 C17.672,0.721 16.583,0 15.378,0 L6.703,0 C5.509,0 4.429,0.708 3.953,1.802 L2.996,4 L2.56,5 L1,5 C0.448,5 0,5.448 0,6 C0,6.552 0.448,7 1,7 L1.689,7 L1.254,8 L1.166,8.202 C1.057,8.453 1,8.725 1,9 L1,14 C1,15.657 2.343,17 4,17 L6.048,17 L6.197,16.995 C7.232,16.918 8.048,16.054 8.047,14.995 L14.04,14.995 C14.041,16.105 14.936,17 16.041,17 L18,17 C19.657,17 21,15.657 21,14 L21,9 C21,8.732 20.946,8.468 20.842,8.221 L20.749,8 L20.326,7 L21,7 C21.552,7 22,6.552 22,6 C22,5.448 21.552,5 21,5 L21,5 Z" id="Fill-11"></path>
12
- </g>
13
- </g>
14
- </svg>
@@ -1,27 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>verkehrstraeger/verkehrstraeger-lastenrad-2px</title>
4
- <defs>
5
- <polygon id="path-1" points="0 0 22.85 0 22.85 15.162 0 15.162"></polygon>
6
- <polygon id="path-3" points="-3.55271368e-15 0 6.9995 0 6.9995 7 -3.55271368e-15 7"></polygon>
7
- </defs>
8
- <g id="verkehrstraeger/verkehrstraeger-lastenrad-2px" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
9
- <g id="Group-9" transform="translate(0.575000, 5.834005)">
10
- <path d="M2.3505,5.5747 L4.1625,5.5747 L4.3505,5.5747 C4.8465,5.5747 5.2405,5.2067 5.3185,4.7327 C5.3275,4.6797 5.3505,4.6307 5.3505,4.5747 C5.3505,4.2537 5.1895,3.9817 4.9545,3.7987 C4.7955,3.6747 4.6055,3.5917 4.3895,3.5827 C4.3765,3.5817 4.3645,3.5747 4.3505,3.5747 L3.6265,3.5747 L2.3505,3.5747 C1.7985,3.5747 1.3505,4.0227 1.3505,4.5747 C1.3505,4.6387 1.3755,4.6937 1.3865,4.7547 C1.4745,5.2177 1.8625,5.5747 2.3505,5.5747" id="Fill-1" fill="#ffffff"></path>
11
- <g id="Group-5">
12
- <mask id="mask-2" fill="white">
13
- <use xlink:href="#path-1"></use>
14
- </mask>
15
- <g id="Clip-4"></g>
16
- <path d="M11.0967,7.8542 L10.2177,4.5742 L9.9497,3.5742 L14.2027,3.5742 L18.2647,3.5742 L20.5897,3.5742 L20.3217,4.5742 L20.0887,5.4452 L17.5837,6.1162 L15.0647,6.7912 L11.0967,7.8542 Z M6.0477,12.6112 C5.6207,12.9512 5.0877,13.1622 4.4997,13.1622 C3.8807,13.1622 3.3207,12.9282 2.8847,12.5552 C2.3477,12.0962 1.9997,11.4232 1.9997,10.6622 C1.9997,10.3682 2.0597,10.0892 2.1537,9.8272 C2.4977,8.8592 3.4137,8.1622 4.4997,8.1622 C4.6247,8.1622 4.7447,8.1812 4.8657,8.1992 C5.5017,8.2932 6.0537,8.6242 6.4397,9.1022 L5.1967,9.4352 L4.5367,9.6122 C4.0037,9.7552 3.6867,10.3032 3.8297,10.8362 C3.9727,11.3702 4.5207,11.6872 5.0547,11.5442 L5.7147,11.3672 L6.9627,11.0322 C6.8667,11.6722 6.5317,12.2262 6.0477,12.6112 L6.0477,12.6112 Z M18.3477,7.9822 L21.0857,7.2482 C21.1857,7.2212 21.2707,7.1682 21.3537,7.1152 C21.3827,7.1012 21.4107,7.0902 21.4377,7.0732 C21.4407,7.0712 21.4427,7.0682 21.4457,7.0672 C21.6497,6.9372 21.8117,6.7392 21.8797,6.4872 L22.3917,4.5742 L22.6017,3.7942 L22.7987,3.0582 C22.8277,2.9482 22.8267,2.8382 22.8187,2.7312 C22.8277,2.6782 22.8507,2.6302 22.8507,2.5742 C22.8507,2.0812 22.4857,1.6892 22.0157,1.6082 C21.9597,1.5982 21.9087,1.5742 21.8507,1.5742 L18.8007,1.5742 L13.6667,1.5742 L13.2537,1.5742 L10.8047,1.5742 L9.4137,1.5742 L9.1907,0.7402 C9.1737,0.6782 9.1357,0.6302 9.1087,0.5742 C8.9597,0.2672 8.6807,0.0512 8.3497,0.0092 C8.2197,-0.0088 8.0847,-0.0028 7.9507,0.0332 L6.0187,0.5512 C5.4857,0.6942 5.1687,1.2422 5.3117,1.7762 C5.4547,2.3092 6.0027,2.6262 6.5367,2.4832 L7.3507,2.2652 L7.5167,2.2202 L7.7397,3.0522 L7.9977,4.0152 L8.1477,4.5742 L9.1647,8.3722 L8.4567,8.5612 C7.9907,7.6862 7.2577,6.9802 6.3507,6.5692 C5.7847,6.3132 5.1617,6.1622 4.4997,6.1622 C4.4397,6.1622 4.3837,6.1772 4.3247,6.1802 C3.7247,6.2032 3.1567,6.3392 2.6397,6.5742 C2.2137,6.7692 1.8287,7.0302 1.4867,7.3402 C0.5797,8.1642 -0.0003,9.3402 -0.0003,10.6622 C-0.0003,12.8232 1.5247,14.6242 3.5547,15.0592 C3.8607,15.1242 4.1757,15.1622 4.4997,15.1622 C5.2577,15.1622 5.9607,14.9572 6.5877,14.6262 C8.0157,13.8712 8.9997,12.3892 8.9997,10.6622 C8.9997,10.6032 8.9847,10.5492 8.9827,10.4912 L9.6827,10.3042 L10.1057,11.8832 C10.2487,12.4172 10.7967,12.7332 11.3307,12.5902 C11.8637,12.4472 12.1807,11.8992 12.0377,11.3662 L11.6147,9.7862 L15.5827,8.7232 L18.3477,7.9822 Z" id="Fill-3" fill="#ffffff" mask="url(#mask-2)"></path>
17
- </g>
18
- <g id="Group-8" transform="translate(15.850500, 8.074700)">
19
- <mask id="mask-4" fill="white">
20
- <use xlink:href="#path-3"></use>
21
- </mask>
22
- <g id="Clip-7"></g>
23
- <path d="M3.5,2 C4.328,2 5,2.672 5,3.5 C5,4.328 4.328,5 3.5,5 C2.672,5 2,4.328 2,3.5 C2,2.672 2.672,2 3.5,2 M5.641,0.75 C5.048,0.287 4.311,0 3.5,0 C3.336,0 3.18,0.026 3.022,0.048 C1.695,0.231 0.615,1.15 0.198,2.386 C0.079,2.738 -3.55271368e-15,3.108 -3.55271368e-15,3.5 C-3.55271368e-15,3.907 0.083,4.291 0.21,4.654 C0.39,5.165 0.673,5.625 1.051,5.996 C1.682,6.616 2.546,7 3.5,7 C5.105,7 6.443,5.914 6.856,4.441 C6.94,4.14 7,3.828 7,3.5 C7,2.378 6.463,1.39 5.641,0.75" id="Fill-6" fill="#ffffff" mask="url(#mask-4)"></path>
24
- </g>
25
- </g>
26
- </g>
27
- </svg>
@@ -1,10 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>verkehrstraeger/verkehrstraeger-scooter-2px</title>
4
- <g id="verkehrstraeger/verkehrstraeger-scooter-2px" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="Group-5" transform="translate(0.924691, 2.550483)" fill="#FFFFFF">
6
- <path d="M22.1163,17.8613853 L21.3073,14.8423853 L20.5203,11.9043853 C20.3773,11.3713853 19.8293,11.0543853 19.2953,11.1973853 C18.7623,11.3403853 18.4453,11.8893853 18.5883,12.4223853 L19.8933,17.2923853 L20.1843,18.3793853 C20.3273,18.9123853 20.8753,19.2293853 21.4093,19.0863853 C21.9423,18.9433853 22.2593,18.3943853 22.1163,17.8613853" id="Fill-1"></path>
7
- <path d="M5.955,17.1213853 C5.544,17.4163853 5.044,17.5953853 4.5,17.5953853 C3.956,17.5953853 3.456,17.4163853 3.045,17.1213853 C2.876,16.9993853 2.727,16.8543853 2.593,16.6953853 C2.228,16.2603853 2,15.7073853 2,15.0953853 C2,14.4833853 2.228,13.9303853 2.593,13.4963853 C2.71,13.3573853 2.839,13.2323853 2.982,13.1213853 C3.404,12.7963853 3.926,12.5953853 4.5,12.5953853 C5.074,12.5953853 5.596,12.7963853 6.018,13.1213853 C6.357,13.3823853 6.634,13.7213853 6.803,14.1213853 L4.593,14.1213853 C4.041,14.1213853 3.593,14.5693853 3.593,15.1213853 C3.593,15.6733853 4.041,16.1213853 4.593,16.1213853 L6.775,16.1213853 C6.593,16.5233853 6.309,16.8663853 5.955,17.1213853 M19.072,7.83538529 C19.201,7.61338529 19.244,7.34238529 19.173,7.07538529 L18.858,5.90138529 L18.544,4.72838529 L17.989,2.65738529 L20.472,1.99238529 L20.57,1.96638529 C21.104,1.82338529 21.42,1.27438529 21.277,0.741385292 C21.135,0.207385292 20.586,-0.108614708 20.053,0.0343852923 L19.954,0.0603852923 L13.057,1.90838529 L12.325,2.10438529 C11.792,2.24738529 11.475,2.79638529 11.618,3.32938529 C11.756,3.84438529 12.273,4.14738529 12.788,4.04038529 C12.807,4.03638529 12.825,4.04138529 12.843,4.03638529 L13.575,3.84038529 L16.058,3.17538529 L16.094,3.31338529 L16.926,6.41938529 L17.144,7.22938529 L15.326,10.3773853 L13.742,13.1213853 L13.164,14.1213853 L8.888,14.1213853 C8.81,13.7683853 8.681,13.4373853 8.526,13.1213853 C8.383,12.8323853 8.21,12.5633853 8.012,12.3133853 C7.187,11.2743853 5.929,10.5953853 4.5,10.5953853 C2.015,10.5953853 0,12.6103853 0,15.0953853 C0,17.5803853 2.015,19.5953853 4.5,19.5953853 C6.252,19.5953853 7.754,18.5833853 8.498,17.1213853 C8.658,16.8053853 8.789,16.4743853 8.872,16.1213853 L10.457,16.1213853 L13.495,16.1213853 C13.895,16.1213853 14.426,15.9353853 14.634,15.5763853 L15.383,14.2783853 L15.825,13.5123853 L17.741,10.1943853 L17.942,9.84638529 L19.029,7.96438529 C19.052,7.92338529 19.055,7.87738529 19.072,7.83538529" id="Fill-3"></path>
8
- </g>
9
- </g>
10
- </svg>