Working on vector tiles

This commit is contained in:
Eric van der Vlist 2023-01-15 19:29:09 +01:00
parent 83f8d0d7c9
commit b1e13e9306
163 changed files with 651 additions and 2 deletions

View File

@ -0,0 +1,101 @@
import atm from '../../icons/osm/atm_euro.svg';
import bar from '../../icons/osm/bar.svg';
import cafe from '../../icons/osm/cafe.svg';
import fast_food from '../../icons/osm/fastfood.svg';
import pub from '../../icons/osm/pub.svg';
import restaurant from '../../icons/osm/restaurant.svg';
import bank from '../../icons/osm/bank_euro.svg';
import doctors from '../../icons/osm/doctors.svg';
import hospital from '../../icons/osm/hospital.svg';
import pharmacy from '../../icons/osm/pharmacie.svg';
import police from '../../icons/osm/police2.svg';
import fire_station from '../../icons/osm/firestation.svg';
import drinking_water from '../../icons/osm/drinking_water.svg';
import waste_basket from '../../icons/osm/waste_basket.svg';
import waste_disposal from '../../icons/osm/waste_disposal.svg';
import vending_machine from '../../icons/osm/vending_machine.svg';
import bakery from '../../icons/osm/bakery.svg';
import butcher from '../../icons/osm/butcher2.svg';
//import cheese from '../../icons/osm/cheese.svg';
//import chocolate from '../../icons/osm/chocolate.svg';
import dairy from '../../icons/osm/dairy.svg';
//import farm from '../../icons/osm/farm.svg';
import greengrocer from '../../icons/osm/greengrocer.svg';
//import health_food from '../../icons/osm/health_food.svg';
//import pasta from '../../icons/osm/pasta.svg';
//import pastry from '../../icons/osm/pastry.svg';
import seafood from '../../icons/osm/seafood.svg';
//import water from '../../icons/osm/water.svg';
import department_store from '../../icons/osm/department_store.svg';
//import general from '../../icons/osm/general.svg';
//import mall from '../../icons/osm/mall.svg';
import supermarket from '../../icons/osm/supermarket.svg';
//import wholesale from '../../icons/osm/wholesale.svg';
import outdoor from '../../icons/osm/outdoor.svg';
import laundry from '../../icons/osm/laundry.svg';
import convenience from '../../icons/osm/convenience.svg';
import hotel from '../../icons/osm/hotel2.svg';
import alpine_hut from '../../icons/osm/alpinehut.svg';
import apartment from '../../icons/osm/apartment.svg';
import camp_site from '../../icons/osm/camping.svg';
import chalet from '../../icons/osm/chalet.svg';
import guest_house from '../../icons/osm/guest_house.svg';
import hostel from '../../icons/osm/hostel.svg';
import motel from '../../icons/osm/motel.svg';
import wilderness_hut from '../../icons/osm/wilderness_hut.svg';
export const osmIcons = {
bar,
fast_food,
food_court: fast_food,
pub,
restaurant,
cafe,
atm,
bank,
doctors,
hospital,
pharmacy,
police,
fire_station,
drinking_water,
water_point: drinking_water,
waste_basket,
waste_disposal,
vending_machine: convenience,
bakery,
butcher,
cheese: dairy,
chocolate: bakery,
convenience,
dairy,
farm: convenience,
greengrocer,
health_food: convenience,
pasta: dairy,
pastry: bakery,
seafood,
water: drinking_water,
department_store,
general: department_store,
mall: department_store,
supermarket,
wholesale: supermarket,
outdoor,
laundry,
hotel,
alpine_hut,
apartment,
camp_site,
chalet,
guest_house,
hostel,
motel,
wilderness_hut,
};
export default osmIcons;

View File

@ -20,6 +20,9 @@ import { Point } from 'ol/geom';
import { Coordinate } from 'ol/coordinate';
import { createDefaultStyle } from 'ol/style/Style';
import osmIcons from './osm-icons';
import { indexOf } from 'lodash';
interface StyleParameters {
type: string;
isSelected: boolean;
@ -308,6 +311,40 @@ const styles = {
}, memoizeOptions),
},
MultiLineString: {},
Point: {
getParameters: (feature: Feature) => {
return {
isSelected: feature.get('isSelected') ?? false,
name: feature.get('name'),
klass: feature.get('class'),
};
},
getStyle: memoize((params: any) => {
console.log({ caller: 'getStyle', params });
const { isSelected, name, klass } = params;
const icon = osmIcons[klass];
if (icon === undefined) {
return null;
}
return new Style({
image: new Icon({
src: icon,
scale: 1.5,
opacity: 0.9,
// anchor: [0, 0],
}),
text: new Text({
text: name,
font: 'bold 14px "Open Sans", "Arial Unicode MS", "sans-serif"',
offsetY: +20,
padding: [2, 2, 2, 2],
fill: new Fill({
color: 'black',
}),
}),
});
}, memoizeOptions),
},
};
styles.MultiLineString = styles.LineString;
@ -318,13 +355,16 @@ export const style = (feature: Feature, resolution: number) => {
) as keyof typeof styles;
const styleForType = styles[type];
if (!styleForType) {
// console.log({ caller: 'style / default', type, feature, resolution });
// console.log({ caller: 'style / default', type, feature, resolution });
return createDefaultStyle(feature, resolution)[0];
}
const params = styles[type].getParameters(feature);
const getStyle = styles[type].getStyle;
const style = getStyle(params);
// console.log({ caller: 'style', type, params, style });
// console.log({ caller: 'style', type, params, style });
if (style === null) {
return createDefaultStyle(feature, resolution)[0];
}
return style;
};

View File

@ -244,6 +244,7 @@ const Map: Component = () => {
const vectorTileLayer1 = new VectorTileLayer({
source: vectorTileSource1,
style: style,
declutter: false,
});
const vectorTileSource2 = new VectorTileSource({

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" height="580" width="580"><path d="M292.765 282.331c-.748-.013-1.308.816-1.131 1.516-.006 1.395.016 2.658-.012 4.053-.507.424-1.143.65-1.668 1.05-1.551.968-3.152 1.868-4.668 2.886-.31.598-.073 1.282-.151 1.917.066.346.532.446.792.25 1.929-.598 3.825-1.296 5.762-1.865-.008.736.03 1.474.01 2.211-.017.225.02.474-.047.684-.43.482-1.146.698-1.418 1.315-.09.401-.014.82-.04 1.226.033.285.337.546.622.412.563-.18 1.136-.33 1.688-.533.293-.106.607-.067.886.055.622.19 1.244.485 1.902.477.317-.148.266-.556.234-.84.057-.422.068-.963-.335-1.222-.381-.307-.797-.577-1.15-.919-.023-.953-.053-1.95.007-2.877.743.255 1.5.464 2.242.727 1.312.433 2.615.908 3.954 1.248.336-.057.415-.488.319-.768-.012-.49.138-1.04-.14-1.483-1.133-.817-2.39-1.443-3.562-2.199-.948-.569-1.896-1.14-2.842-1.712-.107-.613.029-1.242-.037-1.86-.004-1.064.079-2.007-.094-3.062a1.195 1.195 0 0 0-1.123-.687z" stroke-linejoin="round" stroke-width=".66" stroke="#0071BC" fill="none"/></svg>

After

Width:  |  Height:  |  Size: 1009 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#FFF" stroke="#C00" stroke-width=".99" stroke-linecap="round" stroke-linejoin="round" d="M291.88 282.122c.003-1.122 1.694-1.122 1.693.031v4.71l6.592 3.961v1.74l-6.562-2.16v3.52l1.52 1.188v1.375l-2.34-.729-2.34.73v-1.376l1.502-1.188v-3.52l-6.562 2.16v-1.74l6.498-3.962v-4.74h0z"/></svg>

After

Width:  |  Height:  |  Size: 383 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" height="580" width="580"><path d="M291.88 282.122c.003-1.122 1.694-1.122 1.693.031v4.71l6.592 3.961v1.74l-6.561-2.16v3.52l1.519 1.187v1.375l-2.341-.728-2.34.728v-1.375l1.502-1.187v-3.52l-6.561 2.16v-1.74l6.498-3.962v-4.74z" stroke-linejoin="round" stroke-linecap="round" stroke-width=".99" stroke="#0071BC" fill="#0071BC"/></svg>

After

Width:  |  Height:  |  Size: 390 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" height="580" width="580"><g stroke-linejoin="round" stroke-linecap="round" stroke="#93278F" fill="#93278F"><path d="M308.672 283.257h1.135v3.746h-1.135v-3.746z" stroke-width=".459" transform="matrix(1.00144 0 0 1.05439 -15.58 -16.459)"/><path d="M307.575 287.559c-.05-.285 1.205-.88 1.67-.881.465 0 1.672.675 1.761.881v9.509c-.86.446-2.938.359-3.432 0v-9.509h.001z" stroke-width="1.387" transform="matrix(1.00144 0 0 1.05439 -15.58 -16.459)"/></g><path d="M301.638 293.224v3.679" stroke-linecap="round" stroke-width=".72" stroke="#93278F" fill="none"/><g stroke="#93278F" fill="#93278F"><path d="m310.774 316.614-.002.117c0 1.558.767 2.82 1.714 2.82s1.714-1.262 1.714-2.82c0-.039 0-.078-.002-.117-1.263-.309-2.64-.204-3.424 0h0z" stroke-linejoin="round" stroke-linecap="round" stroke-width=".244" opacity=".75" transform="matrix(1.199 0 0 1.25912 -72.99 -108.626)"/><path d="m310.762 316.63-.002.117c0 1.558.767 2.82 1.714 2.82.946 0 1.714-1.262 1.714-2.82l-.002-.117c-.956.298-1.976.491-3.424 0z" stroke-width=".03" transform="matrix(1.199 0 0 1.25912 -72.99 -108.626)"/></g><path d="M299.551 282.534c-.774 0-1.29.594-1.29 1.627 0 1.032.49 1.626 1.29 1.626s1.291-.62 1.291-1.626c0-1.007-.516-1.627-1.29-1.627m3.252.103-3.227 5.19h.542l3.228-5.19h-.543m-3.279.259c.336 0 .543.413.543 1.265 0 .852-.181 1.29-.543 1.29-.361 0-.516-.438-.516-1.29 0-.852.18-1.265.516-1.265m3.847 1.781c-.774 0-1.29.594-1.29 1.627 0 1.032.516 1.626 1.29 1.626.8 0 1.291-.594 1.291-1.626 0-1.007-.516-1.627-1.29-1.627m-.026.336c.335 0 .542.439.542 1.29 0 .853-.18 1.266-.542 1.266-.362 0-.543-.44-.543-1.265s.207-1.291.543-1.291" fill="#93278F"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0092DA" d="m288.452 303.437.374 3.065c.045.334.246.529.603.585a.755.755 0 0 0 .644-.208.694.694 0 0 0 .226-.628l-.44-3.483c-.044-.256-.2-.412-.348-.619l-1.143-1.593 1.105-1.925.552.703a.4.4 0 0 0 .202.15l1.241.604a.418.418 0 0 0 .148.031.522.522 0 0 0 .403-.182.62.62 0 0 0 .168-.42c0-.279-.135-.463-.403-.551l-.955-.537-1.372-1.656c-.19-.223-.457-.363-.804-.419-.602-.09-1.054.122-1.355.636l-1.522 2.627a1.077 1.077 0 0 0-.133.62l.05 3.329-1.155 2.477a1.115 1.115 0 0 0-.083.251.71.71 0 0 0 .133.561.756.756 0 0 0 .502.293c.356.056.608-.067.752-.368l1.273-2.711a.785.785 0 0 0 .067-.318l-.018-2.059 1.288 1.745zm.885-7.233c.301 0 .563-.108.787-.326.224-.218.334-.482.334-.796 0-.301-.11-.562-.334-.786a1.074 1.074 0 0 0-.787-.334c-.312 0-.577.11-.795.334a1.093 1.093 0 0 0-.326.786c0 .312.109.578.326.796.218.218.482.326.795.326zm-3.915 3.064 1.673-2.878c.111-.19.073-.334-.117-.435l-.536-.32c-.189-.109-.334-.071-.435.119l-1.674 2.877c-.111.189-.072.336.118.436l.536.318c.188.111.334.072.435-.117z"/><path fill="none" stroke="#7398CF" stroke-width=".463" stroke-linecap="round" d="M291.557 300.004v6.493"/><g fill="#0092DA" stroke="#0092DA" stroke-linecap="round" stroke-linejoin="round"><path stroke-width=".826" d="m279.062 293.27 9.238-4.928 9.239 4.928-.62.629-3.089-1.245-5.534-.665-5.547.655-3.072 1.242-.615-.616z"/><path stroke-width=".906" d="M294.365 293.246h1.152v11.092h-1.152zM280.974 293.246h1.152v11.092h-1.152z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xml:space="preserve"
viewBox="0 0 14 14"
height="14px"
width="14px"
y="0px"
x="0px"
id="tourism_apartment"
version="1.1"><metadata
id="metadata13"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs11" />
<rect
height="14"
width="14"
fill="none"
display="none"
id="canvas" />
<path
id="hotel"
d="M 0.5,3 C 0.223,3 0,3.223 0,3.5 V 4 8 9 9.5 11 H 1 V 9.5 9 H 13 V 10.5 11 H 13.5 14 V 10.5 9 8 6 5.5 C 14,5.223 13.777,5 13.5,5 13.223,5 13,5.223 13,5.5 V 6 8 H 1 V 4 3.5 C 1,3.223 0.777,3 0.5,3 Z m 3,1 C 2.671573,4 2,4.671573 2,5.5 2,6.328427 2.671573,7 3.5,7 4.328427,7 5,6.328427 5,5.5 5,4.671573 4.328427,4 3.5,4 Z M 6,5 v 2 h 6 C 12,6 10.963825,5 10,5 Z" /><rect
y="0"
x="2.220446e-016"
height="2"
width="14"
id="rect825"
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.07990667;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /><rect
y="12"
x="0"
height="2"
width="14"
id="rect825-2"
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.07990667;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#754C24" d="M290.517 269.937a1.213 1.213 0 0 0-.123.004c-.193.015-.433.076-.523.134l-.172.103c-.147.084-.498.467-.655.715-.1.157-.21.338-.247.405-.009.015-.057.085-.106.155s-.11.165-.135.211a.299.299 0 0 1-.058.085.84.84 0 0 0-.104.15c-.224.358-.498.698-.606.748-.146.067-.396.293-.534.487l-.187.256a4.31 4.31 0 0 0-.374.646l-.101.237a4.55 4.55 0 0 0-.171.468 2.074 2.074 0 0 1-.033.122c-.016.05-.039.131-.052.18a21.895 21.895 0 0 0-.138.543 3.49 3.49 0 0 0-.067.325.28.28 0 0 1-.017.066 6.357 6.357 0 0 0-.086.608c.002.017.001.034-.003.039a.799.799 0 0 0-.018.135l-.016.188a6.406 6.406 0 0 0-.011.159l-.012.166a3.397 3.397 0 0 0-.014.236 3.638 3.638 0 0 0-.022.453l.004.13c.006.301.041.67.099 1.051.034.228.055.429.055.538-.001.091-.001.091-.043.078a.861.861 0 0 1-.12-.055.944.944 0 0 0-.145-.061.35.35 0 0 1-.078-.029 1.228 1.228 0 0 0-.183-.039 1.425 1.425 0 0 1-.21-.048 1.66 1.66 0 0 0-.399-.092c-.238-.017-.481.071-.568.205a.792.792 0 0 0-.111.45c.017.194.123.594.169.637a1.758 1.758 0 0 0 .202.358c.032.048.064.103.072.122.014.035.164.239.396.536l.152.198c.012.017.168.164.385.365a12.2 12.2 0 0 1 1.788.032c2.034.203 2.984.271 4.883 0 .409-.059.858-.113 1.322-.162.201-.064.352-.119.475-.174a5.073 5.073 0 0 0 1.067-.58c.052-.041.112-.084.135-.096.108-.058.256-.193.505-.464.271-.294.277-.303.437-.592.11-.201.492-.598.713-.739.029-.02.094-.065.144-.104.151-.118.239-.182.292-.213.027-.017.068-.046.092-.066.022-.021.079-.065.124-.098.403-.298.692-.567.827-.773.079-.123.133-.284.169-.509.027-.172.026-.194-.017-.421-.06-.312-.176-.632-.286-.786a1.658 1.658 0 0 0-.529-.503c-.107-.071-.352-.183-.399-.184a.077.077 0 0 1-.045-.014 1.566 1.566 0 0 0-.24-.044 2.795 2.795 0 0 1-.234-.039c-.024-.021.264-.284.343-.312.039-.015.09.009.202.095.079.061.135.075.208.052.026-.009.186-.049.354-.09.447-.108.47-.115.476-.137.008-.03-.021-.07-.201-.285a19.016 19.016 0 0 1-.192-.23c-.098-.12-.364-.382-.928-.911a233.279 233.279 0 0 0-2.757-2.538 17.3 17.3 0 0 1-.372-.324c-.513-.456-1.13-.965-1.278-1.052-.071-.042-.079-.033-.103.115a2.263 2.263 0 0 1-.063.256 3.23 3.23 0 0 0-.126.447c-.006.064.056.182.145.275a.33.33 0 0 1 .073.1c.005.048-.068.17-.188.314-.119.144-.119.144-.127.082a6.273 6.273 0 0 0-.105-.53 2.04 2.04 0 0 0-.391-.582 2.442 2.442 0 0 0-.642-.448c-.12-.052-.294-.105-.304-.094-.005.004-.02 0-.034-.008a1.182 1.182 0 0 0-.305-.034zm.168.515a.783.783 0 0 1 .371.081c.106.056.125.07.264.205.144.14.15.148.21.266.111.222.158.399.155.6-.003.146-.044.407-.068.435a.078.078 0 0 0-.021.048c-.007.061-.098.208-.188.308-.107.117-.11.118-.328.138-.428.037-.604.024-1.092-.081l-.211-.045a22.208 22.208 0 0 1-.172-.04 2.83 2.83 0 0 0-.216-.041.858.858 0 0 1-.129-.028c-.048-.02-.06-.031-.062-.062a.675.675 0 0 1 .091-.239c.034-.054.107-.184.163-.29.016-.032.062-.107.101-.169.039-.062.097-.16.131-.217.229-.394.546-.722.798-.829a.496.496 0 0 1 .203-.04zm6.428 6.038c.251.006.488.075.648.207.142.116.251.284.275.424a1.27 1.27 0 0 1-.073.559c-.048.119-.057.13-.256.347-.162.175-.229.238-.309.29-.057.036-.14.093-.186.125a8.462 8.462 0 0 1-.197.131c-.062.04-.157.1-.209.136-.136.091-.314.183-.379.192-.069.01-.075.005-.082-.085a7.863 7.863 0 0 0-.165-.676 5.386 5.386 0 0 1-.131-.644c-.039-.37.091-.701.326-.832a1.48 1.48 0 0 1 .738-.174z"/><path fill="none" stroke="#754C24" stroke-width="1.25" stroke-linecap="square" stroke-linejoin="bevel" d="M283.889 284.058c.808-.126 2.272-.297 3.644-.159 2.034.203 2.984.271 4.883 0 1.677-.24 3.99-.426 5.395-.327"/></svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#999" d="M284.477 295.254v2.645h2.13c.169-.614.278-1.521.286-1.571l6.621-.042.312 1.613h2.101v-2.645h-11.45z"/><path fill="none" stroke="#FFF" stroke-width=".578" stroke-linejoin="round" d="M286.893 296.556c-.046.269-2.526 10.878-2.526 10.878l11.68-.1-2.531-10.822-6.623.044z"/><path fill="#E6E6E6" stroke="#4D4D4D" stroke-width=".578" stroke-linecap="round" stroke-linejoin="round" d="M286.893 296.556c-.046.269-2.526 10.878-2.526 10.878l11.68-.1-2.531-10.822-6.623.044z"/><path fill="#333" d="M292.814 305.688c-.354.239-.956.466-1.697.466-.922 0-1.752-.352-2.311-1.012-.432-.478-.717-1.139-.82-1.959h-.706v-.568h.648v-.171c0-.171.012-.341.023-.501h-.672v-.57h.751c.137-.797.467-1.457.934-1.924.568-.604 1.32-.944 2.244-.944.682 0 1.206.193 1.523.363l-.227.751a2.67 2.67 0 0 0-1.273-.318c-.617 0-1.129.217-1.516.615-.331.342-.558.854-.672 1.457h3.177v.569h-3.279c-.022.147-.022.309-.022.478v.193h3.302v.57H289c.09.66.307 1.149.626 1.491.421.456.992.659 1.607.659.603 0 1.126-.215 1.389-.376l.192.731z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

20
src/icons/osm/bakery.svg Normal file
View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="14"
height="14"
viewBox="0 0 14 14">
<rect
width="14"
height="14"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="M 6.75,3 8.25,7 6.75,7 5.25,3 C 5.25,3 3.494833,3 3.5,3 L 5,7 3.5,7 2.176907,3.5762712 C 1.291044,4.2640693 0,6.1983848 0,8 l 0,2 c 0,0.59322 0.423729,1 1,1 l 12,0 c 0.576271,0 1,-0.423729 1,-1 L 14,8 C 14,5.5355945 12.272623,3.5853602 10,3 L 11.5,7 10,7 8.5,3 c 0,0 -1.743955,0 -1.75,0 z"
id="bakery" />
</svg>

After

Width:  |  Height:  |  Size: 696 B

1
src/icons/osm/bandb.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path opacity=".351" fill="#29ABE2" stroke="#FFF" stroke-width=".043" d="m290.837 270.502-7.481 7.679h1.496V289.7h4.489v-5.854h3.097v5.854h4.386v-11.519h1.497l-7.484-7.679z"/><path fill="#FFF" stroke="#29ABE2" stroke-width="1.345" d="m281.544 280.066-.12 9.366"/><path fill="#29ABE2" stroke="#29ABE2" stroke-width="1.345" d="m281.664 285.95 18.012.12M299.796 289.072l.12-6.124"/><path fill="#29ABE2" stroke="#29ABE2" stroke-width="1.547" d="M289.349 282.528h7.805a.84.84 0 1 1 0 1.681h-7.805a.84.84 0 0 1 0-1.681z"/><path fill="#29ABE2" stroke="#29ABE2" stroke-width=".092" d="M287.146 280.847c0 .641-.586 1.16-1.309 1.161-.724 0-1.311-.519-1.311-1.16v-.001c0-.641.586-1.16 1.31-1.16s1.31.519 1.31 1.16z"/><path fill="#29ABE2" stroke="#29ABE2" stroke-width="1.345" d="M283.315 283.849h3.362a.15.15 0 1 1 0 .3h-3.362a.15.15 0 1 1 0-.3z"/><path fill="#29ABE2" d="M283.967 273.349h2.385c.397 0 .702.099.915.295s.319.44.319.731a.92.92 0 0 1-.228.627 1.03 1.03 0 0 1-.444.276c.296.071.514.193.653.367.14.174.21.392.21.654 0 .214-.05.405-.149.576a1.091 1.091 0 0 1-.407.405c-.107.062-.269.106-.484.135a5.496 5.496 0 0 1-.57.057h-2.199v-4.123zm1.285 1.617h.554c.199 0 .337-.034.415-.103s.116-.167.116-.296a.35.35 0 0 0-.116-.281c-.078-.068-.214-.102-.406-.102h-.562v.782zm0 1.621h.649c.22 0 .374-.039.464-.117s.135-.183.135-.313a.363.363 0 0 0-.133-.294c-.09-.074-.245-.111-.469-.111h-.646v.835zm6.443-1.12.895.2a3.105 3.105 0 0 1-.136.396 3.5 3.5 0 0 1-.183.352l.431.295c.053.034.12.074.202.121l-.616.709a5.513 5.513 0 0 1-.35-.208 9.002 9.002 0 0 0-.325-.203 2.213 2.213 0 0 1-.596.287 3.26 3.26 0 0 1-.939.124c-.55 0-.958-.114-1.227-.344-.268-.229-.402-.506-.402-.832 0-.234.079-.456.236-.665s.415-.386.773-.53a2.088 2.088 0 0 1-.31-.474 1.054 1.054 0 0 1-.084-.409c0-.293.111-.534.335-.723.223-.189.562-.284 1.015-.284.464 0 .804.09 1.021.27.218.18.326.396.326.647a.867.867 0 0 1-.1.405c-.067.13-.147.234-.241.315-.094.081-.261.2-.503.36.2.201.409.387.627.56.06-.117.11-.239.151-.369zm-1.316-.723c.148-.081.263-.168.343-.263.081-.095.121-.185.121-.269a.287.287 0 0 0-.102-.224.398.398 0 0 0-.278-.092.4.4 0 0 0-.284.102.317.317 0 0 0-.109.239c-.001.117.103.286.309.507zm-.408 1.002c-.157.11-.262.205-.313.284a.448.448 0 0 0-.077.25c0 .137.059.259.177.366s.272.16.462.16c.204 0 .434-.079.688-.239a13.277 13.277 0 0 1-.937-.821zm3.591-2.397h2.385c.397 0 .703.099.916.295s.319.44.319.731a.917.917 0 0 1-.229.627 1.019 1.019 0 0 1-.444.276c.297.071.515.193.654.367.14.174.209.392.209.654 0 .214-.049.405-.148.576s-.235.306-.408.405c-.106.062-.268.106-.483.135a5.532 5.532 0 0 1-.571.057h-2.199v-4.123zm1.286 1.617h.555c.198 0 .337-.034.414-.103.078-.068.117-.167.117-.296a.351.351 0 0 0-.117-.281c-.077-.068-.213-.102-.406-.102h-.562v.782zm0 1.621h.65c.219 0 .374-.039.464-.117s.135-.183.135-.313c0-.122-.045-.22-.134-.294s-.245-.111-.468-.111h-.647v.835z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path opacity=".2" fill="#CCC" stroke="#666" stroke-width=".031" d="m289.463 282.688-6.38 4.857h1.276v7.793h10.209v-7.793h1.275l-6.38-4.857z"/><path fill="none" stroke="#666" stroke-width=".9" stroke-linejoin="round" d="m289.463 282.435-6.38 4.857h1.276v8.046h10.209v-8.046h1.275l-6.38-4.857z"/><path fill="#333" d="M291.875 293.419c-.361.245-.982.479-1.743.479-.948 0-1.802-.363-2.375-1.041-.444-.492-.737-1.171-.843-2.013h-.725v-.584h.667v-.174c0-.176.012-.352.023-.515h-.69v-.585h.772c.14-.819.479-1.498.959-1.978.585-.619 1.357-.971 2.305-.971.702 0 1.239.199 1.567.375l-.234.772a2.728 2.728 0 0 0-1.311-.328c-.632 0-1.159.223-1.556.632-.339.352-.573.878-.69 1.498h3.264v.585h-3.369c-.023.152-.023.316-.023.491v.199h3.394v.584h-3.311c.094.68.316 1.182.644 1.533.433.468 1.018.679 1.65.679.62 0 1.159-.224 1.427-.387l.198.749z"/></svg>

After

Width:  |  Height:  |  Size: 924 B

1
src/icons/osm/bar.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#754C24" d="M293.324 285.37h-.008c.01-.008.015-.017.015-.025 0-.196-2.675-.355-5.975-.355s-5.976.159-5.976.355c0 .008.005.017.015.025h-.015l5.296 4.901v5.547l-3.431 2.452h.009c-.017.009-.025.018-.025.027 0 .135 1.848.245 4.127.245s4.127-.11 4.127-.245c0-.01-.009-.019-.025-.027h.002l-3.431-2.452v-5.547l5.295-4.901zm-5.798 3.948a.262.262 0 0 1-.348 0l-2.559-2.368c-.095-.088-.067-.161.063-.161h5.339c.13 0 .159.072.063.161l-2.558 2.368z"/></svg>

After

Width:  |  Height:  |  Size: 543 B

1
src/icons/osm/bench.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#754C24" stroke="#754C24" stroke-width="1.32" d="M288.501 301.299h15.396"/><path fill="#754C24" stroke="#754C24" stroke-width=".99" d="M291.294 301.289v4.082M301.104 301.289v4.082"/></svg>

After

Width:  |  Height:  |  Size: 286 B

1
src/icons/osm/book.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#93278F" stroke="#93278F" stroke-width=".3" stroke-linecap="round" stroke-linejoin="round" d="m284.458 284.637 6.855 7.785 6.564-3.776-6.681-7.727-6.738 3.718zM284.089 285.499l6.739 7.668.029 2.904-6.797-7.683.029-2.889z"/><path opacity=".75" fill="#93278F" stroke="#93278F" stroke-width=".494" stroke-linecap="round" stroke-linejoin="round" d="m297.825 289.654-6.188 3.626-.005.096 6.183-3.624.01-.098zM297.825 290.854l-6.188 3.626-.005.096 6.183-3.623.01-.099zM297.825 292.055l-6.188 3.625-.005.096 6.183-3.623.01-.098z"/></svg>

After

Width:  |  Height:  |  Size: 628 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" xml:space="preserve"><path fill="gray" d="M125.585 149.947h8.758l-2.433-8.421h-3.855z"/></svg>

After

Width:  |  Height:  |  Size: 159 B

1
src/icons/osm/bunker.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14"><path style="opacity:1;fill:#000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:.99999994;stroke-opacity:1" d="M5 3C3 3 3 3 2 5l-2 6h2l2-6h6l2 6h2l-2-6c-1-2-1-2-3-2Zm2.014 3.5C6.259 6.494 5.503 6.994 5 8l-1 3h6L9 8c-.497-.994-1.24-1.492-1.986-1.5Z"/></svg>

After

Width:  |  Height:  |  Size: 330 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0071BC" d="m290.425 283.704.047.001.048-.001h-.095zm.048.001c-1.102.009-2.594.319-3.217.579-.632.263-1.053.526-1.185 1.185l-.474 3.649v5.028h.816v.788c0 .962 1.406.962 1.406 0v-.788h5.306v.788c0 .962 1.406.962 1.406 0v-.788h.816v-5.028l-.474-3.649c-.131-.658-.554-.921-1.186-1.185-.62-.26-2.113-.57-3.214-.579zm-2.006.921h4.011c.396 0 .396.592 0 .592h-4.012c-.394 0-.394-.592.001-.592zm-1.065 1.19h6.141c.417 0 .526.212.577.534l.369 2.646c.034.254-.039.505-.39.505h-7.254c-.351 0-.423-.251-.389-.505l.37-2.646c.05-.321.159-.534.576-.534zm-.284 5.403a.675.675 0 1 1-.003 1.35.675.675 0 0 1 .003-1.35zm6.711 0a.676.676 0 1 1-.004 1.352.676.676 0 0 1 .004-1.352z"/><path opacity=".1" fill="#0071BC" stroke="#FFF" stroke-width=".736" d="M298.466 290a8 8 0 1 1-16 0 8 8 0 0 1 16 0z"/><path fill="none" stroke="#0071BC" stroke-width=".736" d="M298.466 290a8 8 0 1 1-16 0 8 8 0 0 1 16 0z"/></svg>

After

Width:  |  Height:  |  Size: 988 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0071BC" d="M292.659 289.437h.088-.088zm.043 0c-1.016.008-2.394.3-2.968.544-.583.249-.972.496-1.093 1.115l-.438 3.436v4.733h.753v.743c0 .904 1.297.904 1.297 0v-.743h4.897v.743c0 .904 1.299.904 1.299 0v-.743h.753v-4.733l-.437-3.436c-.122-.619-.512-.867-1.094-1.115-.573-.245-1.951-.537-2.969-.544zm-1.85.866H294.555c.365 0 .365.557 0 .557h-3.702c-.366 0-.366-.557-.001-.557zm-.983 1.122h5.668c.386 0 .485.199.533.502l.34 2.491c.032.238-.036.477-.358.477h-6.695c-.324 0-.391-.238-.36-.477l.342-2.491c.044-.303.145-.502.53-.502zm-.263 5.086c.344 0 .622.284.622.635a.628.628 0 0 1-.622.636.63.63 0 0 1-.623-.636c0-.351.279-.635.623-.635zm6.194 0c.345 0 .623.284.623.635a.629.629 0 0 1-.623.636.628.628 0 0 1-.622-.636c0-.351.278-.635.622-.635z"/></svg>

After

Width:  |  Height:  |  Size: 846 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g fill="#FFF"><path d="M297.792 294.541s-1.06-1.252-2.183-3.083c-.9-1.445-1.702-3.372-1.766-3.564.61-.45 3.693-1.83 4.303-1.96.192.707.481 2.088 1.06 3.405.61 1.38 1.38 2.44 1.637 2.826-.674.642-3.05 2.376-3.05 2.376zm2.088-.77c.064.642 2.248 3.628 2.986 4.174.29.225.482.032.964-.289.481-.321.674-.642.481-1.028-.353-.834-1.926-3.853-2.665-4.335-.707-1.027-1.317-1.83-1.895-3.243-.61-1.477-.995-2.987-1.22-3.886-.835.225-2.184.835-3.019 1.22-.93.418-1.605.835-2.344 1.253.225.674.803 2.376 1.959 4.175.931 1.445 1.702 2.569 2.601 3.468l2.152-1.51zm-3.244-5.974c0-.32.29-.61.643-.61.353 0 .642.257.642.61s-.29.61-.642.61c-.386 0-.643-.288-.643-.61z"/><path d="M297.792 294.541s-1.06-1.252-2.183-3.083c-.9-1.445-1.702-3.372-1.766-3.564.61-.45 3.693-1.83 4.303-1.96.192.707.481 2.088 1.06 3.405.61 1.38 1.38 2.44 1.637 2.826-.674.642-3.05 2.376-3.05 2.376zm2.088-.77c.064.642 2.248 3.628 2.986 4.174.29.225.482.032.964-.289.481-.321.674-.642.481-1.028-.353-.834-1.926-3.853-2.665-4.335-.707-1.027-1.317-1.83-1.895-3.243-.61-1.477-.995-2.987-1.22-3.886-.835.225-2.184.835-3.019 1.22-.93.418-1.605.835-2.344 1.253.225.674.803 2.376 1.959 4.175.931 1.445 1.702 2.569 2.601 3.468l2.152-1.51zm-3.244-5.974c0-.32.29-.61.643-.61.353 0 .642.257.642.61s-.29.61-.642.61c-.386 0-.643-.288-.643-.61z"/></g><g fill="#93278F"><path d="M297.792 294.541s-1.06-1.252-2.183-3.083c-.9-1.445-1.702-3.372-1.766-3.564.61-.45 3.693-1.83 4.303-1.96.192.707.481 2.088 1.06 3.405.61 1.38 1.38 2.44 1.637 2.826-.674.642-3.05 2.376-3.05 2.376zm2.088-.77c.064.642 2.248 3.628 2.986 4.174.29.225.482.032.964-.289.481-.321.674-.642.481-1.028-.353-.834-1.926-3.853-2.665-4.335-.707-1.027-1.317-1.83-1.895-3.243-.61-1.477-.995-2.987-1.22-3.886-.835.225-2.184.835-3.019 1.22-.93.418-1.605.835-2.344 1.253.225.674.803 2.376 1.959 4.175.931 1.445 1.702 2.569 2.601 3.468l2.152-1.51zm-3.244-5.974c0-.32.29-.61.643-.61.353 0 .642.257.642.61s-.29.61-.642.61c-.386 0-.643-.288-.643-.61z"/><path opacity=".1" d="M299.88 293.77c.064.643 2.248 3.63 2.986 4.175.29.225.482.032.964-.289.481-.321.674-.642.481-1.028-.353-.834-1.926-3.853-2.665-4.335-.707-1.027-1.317-1.83-1.895-3.243-.61-1.477-.995-2.987-1.22-3.886-.835.225-2.184.835-3.019 1.22-.93.418-1.605.835-2.344 1.253.225.674.803 2.376 1.959 4.175.931 1.445 1.702 2.569 2.601 3.468l2.152-1.51z"/></g></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

1
src/icons/osm/cafe.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#754C24" stroke="#FFF" stroke-width=".601" stroke-linecap="round" stroke-linejoin="round" d="M293.076 288.481s-1.408 11.014 4.764 10.991c.149.009.293.011.429.009.138.002.279 0 .43-.009 6.172.023 4.765-10.991 4.765-10.991l-5.194.021-5.194-.021z"/><path fill="none" stroke="#754C24" stroke-width="1.472" d="M302.728 290.822s1.437-1.106 2.573-1.106c1.138 0 1.659 1.802 1.637 3.014-.025 1.211-.896 4.172-5.129 4.225-4.235.051.942-6.133.919-6.133z"/></svg>

After

Width:  |  Height:  |  Size: 549 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="none" stroke="#0092DA" stroke-width=".946" d="M288.009 280.171c-.055.3-7.036 13.274-7.036 13.274l14.053-.023-7.017-13.251z"/><path fill="#0092DA" stroke="#0092DA" stroke-width=".946" d="M288.009 281.038c-.026.146-.459.889.463 4.124.96 3.371 3.538 8.282 3.538 8.282l3.018-.023-7.019-12.383z"/><path fill="#0092DA" stroke="#0092DA" stroke-width=".946" d="M288.131 281.038c.026.146.46.889-.462 4.124-.96 3.371-3.539 8.282-3.539 8.282l-3.017-.023 7.018-12.383z"/><path fill="none" stroke="#0092DA" stroke-width=".946" d="m286.62 277.479 8.405 15.94-8.405-15.94zM289.458 277.566l-8.393 15.854 8.393-15.854z"/></svg>

After

Width:  |  Height:  |  Size: 708 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="580" height="580" xml:space="preserve"><path fill="#93278F" d="M284.313 283.58c-.64 0-.98.35-1.137.759l-.833 2.15c-.33.042-.915.43-.915 1.164v2.734h.81v.875c0 1.075 1.522 1.062 1.522 0v-.875h5.476v.875c0 1.062 1.522 1.075 1.522 0v-.875h.811v-2.734c0-.734-.585-1.122-.915-1.164l-.833-2.15c-.157-.409-.497-.759-1.137-.759h-4.371zm-.009.783h4.391c.274.002.392.174.47.412l.627 1.691H283.206l.627-1.691c.079-.238.196-.41.471-.412zm-1.279 2.926c.388 0 .703.324.703.725 0 .4-.315.725-.703.725s-.703-.325-.703-.725c0-.401.315-.725.703-.725zm6.951 0c.388 0 .703.324.703.725 0 .4-.315.725-.703.725s-.704-.325-.704-.725a.714.714 0 0 1 .704-.725zM293.622 293.039l.027-1.52.667-.355.654.38-.028 1.519.688.012.423-2.124-1.21-.856.37-7.452c.023-1.11-1.558-1.05-1.535-.055l.073 7.509-1.29.783.423 2.141.738.018zm.822-10.127a.355.355 0 0 1-.351-.364.36.36 0 0 1 .364-.35.357.357 0 0 1 .349.361.353.353 0 0 1-.362.353z"/><path fill="#93278F" d="m293.622 293.039.027-1.52.667-.355.654.38-.028 1.519.688.012.423-2.124-1.21-.856.37-7.452c.023-1.11-1.558-1.05-1.535-.055l.073 7.509-1.29.783.423 2.141.738.018zm.822-10.127a.355.355 0 0 1-.351-.364.36.36 0 0 1 .364-.35.357.357 0 0 1 .349.361.353.353 0 0 1-.362.353z"/><path fill="#93278F" d="m293.622 293.039.027-1.52.667-.355.654.38-.028 1.519.688.012.423-2.124-1.21-.856.37-7.452c.023-1.11-1.558-1.05-1.535-.055l.073 7.509-1.29.783.423 2.141.738.018zm.822-10.127a.355.355 0 0 1-.351-.364.36.36 0 0 1 .364-.35.357.357 0 0 1 .349.361.353.353 0 0 1-.362.353z"/><g transform="rotate(-133.966 347.21 177.847) scale(2.76239)"><defs><path id="a" d="m109.145 21.47.389.389-.075.263-.263.075-.389-.389-.176.176.447.644.527-.1 1.849 1.969c.283.285.665-.142.4-.386l-1.975-1.868.12-.533-.664-.428-.19.188zm2.432 2.759a.129.129 0 0 1 .183 0 .13.13 0 0 1 0 .183.13.13 0 0 1-.182 0 .128.128 0 0 1-.001-.183z"/></defs><use xlink:href="#a" fill="#93278F"/><clipPath id="b"><use xlink:href="#a" /></clipPath><g clip-path="url(#b)"><path fill="#93278F" d="m109.145 21.47.389.389-.075.263-.263.075-.389-.389-.176.176.447.644.527-.1 1.849 1.969c.283.285.665-.142.4-.386l-1.975-1.868.12-.533-.664-.428-.19.188zm2.432 2.759a.129.129 0 0 1 .183 0 .13.13 0 0 1 0 .183.13.13 0 0 1-.182 0 .128.128 0 0 1-.001-.183z"/></g></g><path fill="#93278F" d="m293.405 293.029.025-1.57.89-.475.825.467-.038 1.599.542.021.372-1.993-1.334-.89.363-7.546c.064-.925-1.32-1.052-1.332.003l.085 7.62-1.246.758.311 1.998.537.008zm.965-10.138c-.195-.003-.386-.16-.38-.358.001-.197.1-.45.43-.489.235.005.413.201.4.443-.003.196-.251.408-.45.404z"/><path fill="#93278F" d="m293.415 293.035.062-2.761-1.012.607.413 2.146.537.008z"/></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="400px" height="400px" viewBox="0 0 400 400" xml:space="preserve">
<path id="path2323" fill="#29ABE2" d="M197.811,199.502c-0.625,0-0.956,0.341-1.11,0.739l-0.811,2.097
c-0.322,0.041-0.893,0.42-0.893,1.135v2.666h0.79v0.852c0,1.049,1.485,1.037,1.485,0v-0.852h2.671l0,0h2.67v0.852
c0,1.037,1.483,1.049,1.483,0v-0.852h0.791v-2.666c0-0.715-0.57-1.094-0.892-1.135l-0.813-2.097
c-0.151-0.398-0.483-0.739-1.107-0.739h-1.147h-1.957H197.811z M197.801,200.265h2.139h0.004l0,0h2.141
c0.268,0.002,0.383,0.17,0.458,0.401l0.612,1.65h-3.211l0,0h-0.004h-3.209l0.612-1.65
C197.418,200.435,197.534,200.267,197.801,200.265z M196.554,203.118c0.379,0,0.685,0.315,0.685,0.707
c0,0.39-0.306,0.706-0.685,0.706s-0.686-0.316-0.686-0.706C195.868,203.435,196.175,203.118,196.554,203.118z M203.332,203.118
c0.378,0,0.686,0.315,0.686,0.707c0,0.39-0.308,0.706-0.686,0.706c-0.379,0-0.688-0.316-0.688-0.706
C202.645,203.435,202.953,203.118,203.332,203.118z"/>
<g id="g2325" transform="translate(879.29125,36.805119)">
</g>
<g>
<path id="path8791-2" sodipodi:nodetypes="cccscccsccccccccsccccccsccc" inkscape:connector-curvature="0" fill="#29ABE2" d="
M197.382,192.856c-0.31,0-0.579,0.112-0.808,0.336c-0.229,0.224-0.345,0.496-0.345,0.817s0.115,0.595,0.345,0.818
c0.229,0.224,0.499,0.336,0.808,0.336c0.012,0,0.023-0.001,0.034-0.001c0.012,0,0.022,0.001,0.035,0.001
c0.31,0,0.58-0.112,0.809-0.336s0.343-0.497,0.343-0.818c0-0.32-0.113-0.593-0.343-0.817s-0.5-0.336-0.809-0.336
c-0.012,0-0.023,0-0.035,0C197.405,192.856,197.394,192.856,197.382,192.856z M196.505,195.42c-0.07,0-0.133,0.007-0.19,0.022
c-0.038-0.003-0.075-0.003-0.112-0.003c-0.257,0.007-0.51,0.118-0.688,0.304c-0.177,0.186-0.277,0.444-0.271,0.701l0.021,2.292
c0,0.002,0,0.002,0,0.004c0.105-0.076,0.214-0.145,0.332-0.202c1.284-0.038,2.571-0.041,3.857-0.037l-0.019-2.076
c0.001-0.248-0.096-0.496-0.266-0.675c-0.169-0.181-0.41-0.293-0.657-0.31c-0.055-0.013-0.114-0.02-0.181-0.02H196.505
L196.505,195.42z"/>
<path id="path21180" sodipodi:nodetypes="cccscccsccccccccsccccccsccc" inkscape:connector-curvature="0" fill="#29ABE2" d="
M202.499,192.856c0.311,0,0.579,0.112,0.808,0.336s0.346,0.496,0.346,0.817s-0.117,0.595-0.346,0.818
c-0.229,0.223-0.497,0.336-0.808,0.336c-0.012,0-0.023-0.001-0.035-0.001c-0.01,0-0.021,0.001-0.034,0.001
c-0.31,0-0.58-0.112-0.809-0.336c-0.23-0.224-0.343-0.497-0.343-0.818c0-0.32,0.112-0.593,0.343-0.817
c0.229-0.224,0.499-0.336,0.809-0.336c0.013,0,0.024,0,0.034,0C202.476,192.856,202.487,192.856,202.499,192.856z M203.377,195.42
c0.069,0,0.132,0.007,0.19,0.022c0.037-0.003,0.073-0.003,0.112-0.003c0.257,0.007,0.509,0.118,0.688,0.304
c0.176,0.186,0.278,0.444,0.271,0.701l-0.02,2.292c0,0.002,0,0.002,0,0.004c-0.105-0.076-0.214-0.145-0.332-0.202
c-1.283-0.038-2.57-0.041-3.857-0.037l0.019-2.076c-0.001-0.248,0.097-0.496,0.266-0.675c0.169-0.181,0.41-0.293,0.656-0.31
c0.056-0.013,0.115-0.02,0.182-0.02H203.377L203.377,195.42z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0092DA" d="M303.163 300.797c0 .408-.198.613-.592.613h-2.093c-.396 0-.592-.205-.592-.613v-.993c0-.396.196-.593.592-.593h2.093c.395 0 .592.197.592.593v.993zm-5.964.021c0 .395-.203.592-.613.592h-4.525c-.395 0-.594-.197-.594-.592v-1.015c0-.396.199-.593.594-.593h4.525c.41 0 .613.197.613.593v1.015zm9.284 4.758h-1.522v-5.287c0-.816-.286-1.508-.857-2.072a2.832 2.832 0 0 0-2.061-.846h-9.896c-.818 0-1.51.283-2.074.846-.563.564-.845 1.255-.845 2.072v3.744c0 .592.212 1.099.634 1.521.423.422.931.635 1.522.635h3.405c.043-.607.281-1.121.719-1.545s.966-.633 1.586-.633c.607 0 1.133.209 1.575.633.444.423.681.93.71 1.522h7.697c-.002-.393-.198-.59-.593-.59zm-9.389 1.481a.69.69 0 0 1-.507-.211.692.692 0 0 1-.21-.508c0-.211.069-.384.21-.518.14-.133.31-.201.507-.201s.365.066.508.201a.683.683 0 0 1 .211.518c0 .197-.07.367-.211.508a.7.7 0 0 1-.508.211zm0-2.389c-.465 0-.861.161-1.184.486a1.612 1.612 0 0 0-.486 1.184c0 .451.162.84.486 1.163.322.325.719.486 1.184.486.45 0 .84-.163 1.163-.486.324-.324.485-.712.485-1.163a1.61 1.61 0 0 0-.485-1.184 1.584 1.584 0 0 0-1.163-.486z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#754C24" stroke="#754C24" stroke-width=".188" stroke-linecap="round" stroke-linejoin="round" d="m283.229 294.816.011-3.021h1.005v1.006h1.005v-1.006h1.005v1.006h1.005v-1.006h1.005v3.016h-1.005v2.01h1.005v-1.005h1.005v1.005h1.005v-1.005h1.005V298.831h.12v.381h-2.13v2.635h-5.025v-7.035l-1.016.009v-.005h0z"/><path fill="#754C24" stroke="#754C24" stroke-width=".188" stroke-linecap="round" stroke-linejoin="round" d="m298.32 294.816-.011-3.021h-1.003v1.006h-1.004v-1.006h-1.004v1.006h-1.004v-1.006h-1.003v3.016h1.003v2.01h-1.003v-1.005h-1.004v1.005h-1.004v-1.005h-1.003V298.831h.503v.381h1.504v2.635h5.019v-7.035l1.015.009-.001-.005h0z"/></svg>

After

Width:  |  Height:  |  Size: 739 B

1
src/icons/osm/chalet.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g opacity=".5"><path fill="none" stroke="#FFF" stroke-width=".41028125" d="M289.75 283.13c-.565 1.198-1.132 2.396-1.7 3.59-.315-.436-.634-.87-.952-1.3-.978 1.566-1.946 3.138-2.931 4.697 3.072.027 6.144.05 9.216.076-1.158-2.462-2.32-4.923-3.485-7.382l-.148.319z"/><path fill="#FFF" d="m289.898 282.335-.184.394-.148.315a599.353 599.353 0 0 1-1.556 3.282c-.25-.34-.499-.682-.748-1.024l-.18-.242-.158.256c-.978 1.565-1.946 3.137-2.931 4.696l-.194.309.368.003c3.072.027 6.144.05 9.216.079l.329.003-.142-.295c-1.158-2.465-2.32-4.923-3.485-7.382l-.187-.394zm0 3.473c.062 0 .124.03.16.079.184.23.362.42.434.45.036.012.026.016.062-.007.036-.023.112-.102.197-.263a.206.206 0 0 1 .184-.108c.075 0 .15.046.184.115l1.67 3.538c.06.125-.049.295-.187.295l-7.556-.062a.21.21 0 0 1-.177-.105.203.203 0 0 1 .007-.207l1.487-2.386a.215.215 0 0 1 .318-.04c.131.132.246.2.384.21.138.01.328-.042.614-.252a.211.211 0 0 1 .289.043l.131.18.538-1.139a.216.216 0 0 1 .18-.121.211.211 0 0 1 .188.108.46.46 0 0 0 .144.174c.04.023.066.026.112.02.095-.02.279-.151.466-.427a.224.224 0 0 1 .17-.095z"/></g><path fill="#29ABE2" stroke="#FFF" stroke-width=".021" d="m284.522 279.466-4.061 3.509h.812v5.264h2.437v-2.675h1.68v2.675h2.381v-5.264h.812l-4.061-3.509z"/><g opacity=".25"><path fill="none" stroke="#FFF" stroke-width=".41028125" d="M289.75 283.13c-.565 1.198-1.132 2.396-1.7 3.59-.315-.436-.634-.87-.952-1.3-.978 1.566-1.946 3.138-2.931 4.697 3.072.027 6.144.05 9.216.076-1.158-2.462-2.32-4.923-3.485-7.382l-.148.319z"/><path fill="#29ABE2" d="m289.898 282.335-.184.394-.148.315a599.353 599.353 0 0 1-1.556 3.282c-.25-.34-.499-.682-.748-1.024l-.18-.242-.158.256c-.978 1.565-1.946 3.137-2.931 4.696l-.194.309.368.003c3.072.027 6.144.05 9.216.079l.329.003-.142-.295c-1.158-2.465-2.32-4.923-3.485-7.382l-.187-.394z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" style="fill:#000" width="18" height="18"><path style="fill-rule:evenodd;stroke-width:.2" d="M14.674 1c-1.837 0-3.326 1.479-3.326 3.303 0 1.824 1.489 3.303 3.326 3.303S18 6.127 18 4.303C18 2.48 16.51 1 14.674 1Zm-.16 9.499c-1.32-2.788-3.42-3.374-4.953-3.374H6.83l3 6.244h2.482l1.416 2.745a1.64 1.64 0 0 0 2.205.707 1.622 1.622 0 0 0 .712-2.19zm-6.25 2.87c-.367-.68-1.924-3.306-5.179-3.46a2.687 2.687 0 0 0 .287 1.126l1.401 2.71H1.64c-.905 0-1.639.728-1.639 1.627C0 16.272.734 17 1.639 17h5.818c.572 0 1.102-.296 1.4-.78.297-.484.32-1.087.058-1.591z"/></svg>

After

Width:  |  Height:  |  Size: 596 B

1
src/icons/osm/cinema.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#603813" d="m284.507 283.122 7.497 15.583 7.035-3.385-7.497-15.583-7.035 3.385zm1.227-.219 4.812-2.312 2.219 4.61-4.812 2.314-2.219-4.612zm-.746.596.519-.249.402.834-.519.25-.402-.835zm5.956-2.867.52-.247.398.832-.514.25-.404-.835zm-5.039 4.765.516-.25.402.834-.519.25-.399-.834zm5.954-2.865.519-.249.399.836-.517.249-.401-.836zm-5.038 4.765.515-.249.402.834-.517.249-.4-.834zm5.954-2.864.516-.248.401.833-.517.25-.4-.835zm-4.601 3.541 4.812-2.315 2.219 4.612-4.812 2.314-2.219-4.611zm-.441 1.224.519-.249.4.833-.518.249-.401-.833zm5.953-2.867.519-.248.399.835-.516.249-.402-.836zm-5.038 4.77.515-.251.401.831-.516.251-.4-.831zm5.954-2.868.518-.25.398.834-.518.25-.398-.834zm-5.04 4.765.517-.253.403.835-.518.252-.402-.834zm5.954-2.864.517-.249.401.833-.517.252-.401-.836zm-4.905 2.904 4.811-2.314 2.22 4.609-4.811 2.319-2.22-4.614zm-.132 1.858.516-.249.399.834-.514.251-.401-.836zm5.949-2.861.52-.251.4.831-.518.253-.402-.833zm-5.038 4.761.52-.248.398.835-.516.25-.402-.837zm5.954-2.864.519-.249.402.834-.52.251-.401-.836z"/><path opacity=".332" fill="#FFF" d="m292.794 285.19-4.813 2.314-2.218-4.613 4.812-2.314zM295.194 290.3l-4.812 2.316-2.22-4.614 4.812-2.316zM297.67 295.327l-4.81 2.316-2.22-4.61 4.81-2.316z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g fill="#93278F"><path d="M290.775 286.663c2.118-1.134 3.928-1.019 5.72-1.997.96.21 1.677.127 2.338-.023 2.028.932 3.812 1.082 5.717 2.043-.159 1.001-.508 1.864-1.088 2.563a4.44 4.44 0 0 0-2.02-.546l-.047 6.808c-2.782.517-5.137.295-7.443-.023l-.023-6.762c-.81-.023-1.428.277-2.063.546-.615-.834-.9-1.717-1.091-2.61z"/><path d="M291.092 286.547c.19.93.525 1.801 1.18 2.543M294.042 295.125c2.436.398 4.871.485 7.307-.023M296.469 284.689c-.02.202.147 1.102 1.203 1.157 1.034.052 1.236-.998 1.204-1.134"/><path d="M296.022 284.928c-.02.202.395 1.308 1.587 1.34 1.215.031 1.714-1.27 1.68-1.406"/><path d="M296.567 285.096c.739.193 1.391.153 2.19-.018M293.938 285.61c.222.857.591 1.861-.023 3.062M301.401 285.627c-.222.857-.592 1.861.023 3.065M304.252 286.524c-.19.93-.525 1.801-1.18 2.54"/></g></svg>

After

Width:  |  Height:  |  Size: 882 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#FFF" stroke="#93278F" stroke-width=".889" d="M287.376 282.443h8.967a.44.44 0 0 1 .44.441v6.383a.44.44 0 0 1-.44.44h-8.967a.44.44 0 0 1-.44-.44v-6.383a.44.44 0 0 1 .44-.441z"/><g fill="#93278F"><path d="M290.029 283.255v4.491l1.627-1.414 1.98-.708-3.607-2.369z"/><path d="m291.747 285.304 1.538 2.665-.949.548-1.538-2.664z"/></g><path fill="#93278F" d="M287.064 290.328h9.56c.25 0 .344.25.47.47l1.284 2.538c.126.22-.22.47-.47.47h-12.129c-.25 0-.595-.25-.47-.47l1.285-2.507c.125-.25.22-.501.47-.501z"/></svg>

After

Width:  |  Height:  |  Size: 605 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#93278F" d="M299.094 285.573s.181 1.062.316 1.289c.135.226.381 1.062.316 1.378-.227 1.107-.362 1.107-1.018 1.898-.249.301-.467.516-.716.591a1.062 1.062 0 0 1-.992-.238c-.562-.526-.529-1.777-.529-1.777s-.497-.158-.565-.384c-.067-.226-.09-.135-.09-.135s-.746 1.604-1.062 1.74c-.316.136-.881.113-.881.113l-7.278-.769s-.339 0-.61-.271c-.271-.271-.293-1.605-.293-1.605l-.701-.429s-.633.542-.972.633c-.339.09-1.808.972-1.808.972s-.498-.475-.475-.949c.023-.475.52-1.717.52-1.717l-.204-.091s.226-.701 1.017-1.243c.791-.542 1.198-.791 1.198-.791s.994 1.062 1.13 1.649c.136.588.113.972.113.972l.452-.452.339-1.175s.181-.542.498-.791.7-.249.7-.249 6.938.292 7.323.475c.475.226.745.678.745.678s.521 1.243.543 2.328c.008.385 3.164-1.695 2.984-1.65z"/></svg>

After

Width:  |  Height:  |  Size: 842 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" height="580" width="580"><path style="fill:#fff;stroke:#93278f;stroke-width:.60000002;stroke-linecap:round;stroke-linejoin:round" d="m262.157 193.604 1.612-4.332.47.175-1.635 4.393-.447-.236z" transform="translate(32 66)"/><path d="M301.066 259.583H288.2l1.49 6.354 9.886-.043 1.49-6.311z" stroke-linejoin="round" stroke-linecap="round" stroke-width=".845" stroke="#93278F" fill="#5CA855"/></svg>

After

Width:  |  Height:  |  Size: 457 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path d="m261.907 193.104 1.612-4.332.47.175-1.635 4.393-.447-.236z" style="fill:#fff;stroke:#93278f;stroke-width:.60000002;stroke-linecap:round;stroke-linejoin:round" transform="translate(32 66)"/><path fill="none" stroke="#93278F" stroke-width=".845" stroke-linecap="round" stroke-linejoin="round" d="M301.066 259.583H288.2l1.49 6.354 9.886-.043 1.49-6.311z"/><path fill="none" stroke="#93278F" stroke-width=".564" stroke-linecap="round" d="M290.596 259.618v5.924M289.347 261.936h10.763M293.209 259.618v5.925M295.941 259.618v6.193M298.613 259.618v6.233M289.881 264.309h9.694"/></svg>

After

Width:  |  Height:  |  Size: 671 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g fill="#93278F"><path d="M283.925 286.402v12.735h8.675v-12.735h-8.675zm4.037 2.558c.635 0 1.177.094 1.625.28.452.188.817.47 1.096.844.173.23.297.511.37.85.073.333.11.835.11 1.507v4.38h-1.268v-1.139c-.27.457-.61.795-1.02 1.015-.408.214-.904.322-1.489.322-.78 0-1.404-.22-1.87-.658-.467-.443-.7-1.035-.7-1.774 0-.854.286-1.504.857-1.946.576-.443 1.418-.665 2.528-.665h1.693v-.199c-.005-.61-.16-1.055-.466-1.329-.306-.278-.795-.418-1.467-.418-.43 0-.863.061-1.3.185a5.733 5.733 0 0 0-1.283.542v-1.26a8.467 8.467 0 0 1 1.336-.398c.43-.094.845-.139 1.248-.139zm.336 4.002c-.736 0-1.292.131-1.666.391-.37.256-.555.64-.555 1.151 0 .462.14.82.418 1.076.278.256.664.384 1.158.384.694 0 1.24-.239 1.638-.719.397-.484.6-1.152.604-2.002v-.28h-1.597z"/><path opacity=".5" d="M283.925 286.402v12.735h8.675v-12.735h-8.675z"/></g><g fill="#93278F"><path opacity=".8" d="M289.639 283.944v4.141l1.453-1.08a8.467 8.467 0 0 1 1.336-.397 5.948 5.948 0 0 1 1.247-.137c.636 0 1.177.094 1.624.281.452.187.818.469 1.097.844.174.228.297.511.37.849.072.333.109.836.109 1.507v4.379h-1.268v-1.139c-.27.457-.609.796-1.021 1.015-.407.215-.902.322-1.487.322-.72 0-1.306-.187-1.758-.559v2.71h6.972v-12.736h-8.674zm0 4.141zm1.667 5.856-.077-.07.077.07zm0-3.726zm0 0 .08-.065c.576-.443 1.419-.665 2.529-.665h1.692v-.199c-.005-.612-.16-1.055-.466-1.329-.307-.279-.795-.418-1.467-.418-.429 0-.863.061-1.302.185a5.65 5.65 0 0 0-1.067.425v2.066zm0 3.726zm2.705-3.468c-.735 0-1.29.129-1.665.39-.37.256-.555.64-.555 1.151 0 .461.139.82.417 1.076s.665.383 1.159.383c.694 0 1.24-.239 1.638-.719.397-.484.598-1.151.603-2.001v-.281h-1.597z"/><path opacity=".502" d="M289.639 283.944v4.141c2 .497 1.585 4.987 1.703 8.595h6.972v-12.736h-8.675zm0 4.141z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#754C24" stroke="#754C24" stroke-width=".357" stroke-linecap="round" stroke-linejoin="round" d="m290.902 280.331-.547 14.469h-3.702v.8h4.333l-.084-15.269z"/><path fill="#754C24" stroke="#754C24" stroke-width=".179" stroke-linecap="round" stroke-linejoin="round" d="M283.227 283.015c.473.461 1.653.988 2.355.934.812-.005 1.655-.318 2.523-.883.803-.539 1.749-.793 2.776-.883l-.021.673c-1.096-.121-1.858.51-2.754.841-.656.346-1.27.716-2.523.736-1.299-.138-1.898-.79-2.356-1.418z"/><path fill="none" stroke="#754C24" stroke-width=".357" stroke-linecap="round" stroke-linejoin="round" d="m282.553 291.152 2.776-6.679 2.734 6.679h-5.51z"/><path fill="#754C24" stroke="#754C24" stroke-width=".357" stroke-linecap="round" stroke-linejoin="round" d="M282.468 290.971c.164 1.088 1.373 1.934 2.84 1.934 1.467 0 2.676-.846 2.84-1.934h-5.68zM290.914 280.331l.547 14.469h3.701v.8h-4.332l.084-15.269z"/><path fill="#754C24" stroke="#754C24" stroke-width=".179" stroke-linecap="round" stroke-linejoin="round" d="M298.59 283.015c-.474.461-1.652.988-2.355.934-.812-.005-1.654-.318-2.522-.883-.803-.539-1.748-.793-2.774-.883l.021.673c1.097-.121 1.858.51 2.755.841.656.346 1.27.716 2.523.736 1.294-.138 1.894-.79 2.352-1.418z"/><path fill="none" stroke="#754C24" stroke-width=".357" stroke-linecap="round" stroke-linejoin="round" d="m299.263 291.152-2.774-6.679-2.734 6.679h5.508z"/><path fill="#754C24" stroke="#754C24" stroke-width=".357" stroke-linecap="round" stroke-linejoin="round" d="M299.349 290.971c-.164 1.088-1.374 1.934-2.841 1.934s-2.676-.846-2.84-1.934h5.681z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

36
src/icons/osm/dairy.svg Normal file
View File

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 14 14"
height="14"
width="14"
id="shop_dairy"
version="1.1">
<metadata
id="metadata115">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs113" />
<g
id="g12"
transform="matrix(0.16211304,0,0,0.16203704,-2.3341676,-1.101852)">
<path
id="path4"
transform="matrix(6.1685352,0,0,6.1714285,14.398395,6.8000008)"
d="M 1.296875,0 C 1.1185507,0 0.97265625,0.14597801 0.97265625,0.32421875 V 2.6484375 L 0.03320312,4.7871094 C 0.01699212,4.8357204 0,4.8674044 0,4.9160156 V 13.675781 C 0,13.854022 0.14589435,14 0.32421875,14 H 14 V 8.2441406 H 7.5039062 c 9.973e-4,-1.1089434 0.00195,-2.2182945 0.00195,-3.328125 0,-0.048611 -0.015039,-0.096499 -0.03125,-0.1289062 L 6.5332031,2.6484375 V 0.32421875 C 6.5332031,0.14597801 6.3873087,0 6.2089844,0 Z M 1.6210938,0.6640625 H 5.8847656 V 2.5664062 H 1.6210938 Z M 1.5722656,2.890625 h 4.3457032 l 0.015625,0.033203 c -0.3011572,0.6819043 -0.6144176,1.379414 -0.875,1.9589844 V 8.2441406 H 3.4316406 V 13.339844 H 0.65625 C 0.64061686,10.582371 0.648437,7.7724441 0.648437,4.9960938 Z m 4.5390625,0.4375 0.7304688,1.6679688 V 8.2441406 H 5.3808594 V 4.9550781 c 6.682e-4,-0.00142 0.00129,-0.00447 0.00195,-0.00586 z M 5.3085938,9.0800781 C 5.8344157,9.080702 6.2602203,9.507381 6.2597656,10.033203 6.2602203,10.559025 5.8344157,10.985704 5.3085938,10.986328 4.782009,10.986783 4.3550136,10.559788 4.3554688,10.033203 4.3550137,9.5066182 4.782009,9.0796229 5.3085938,9.0800781 Z m 6.4179682,0.4082031 c 0.71825,3.653e-4 1.300416,0.5825308 1.300782,1.3007808 -3.65e-4,0.718251 -0.582531,1.300417 -1.300782,1.300782 -0.719013,7.13e-4 -1.302369,-0.581769 -1.302734,-1.300782 3.66e-4,-0.719013 0.583722,-1.3014935 1.302734,-1.3007808 z M 8.0976562,11.021484 c 0.608407,-7.4e-5 1.1016368,0.493156 1.1015626,1.101563 7.36e-5,0.608407 -0.493156,1.101636 -1.1015626,1.101562 -0.6084065,7.4e-5 -1.101636,-0.493155 -1.1015624,-1.101562 -7.42e-5,-0.608407 0.4931555,-1.101637 1.1015624,-1.101563 z"
style="stroke-width:0.16207504" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g fill="#93278F"><path d="M299.464 294.981s-.62 2.1-2.44 1.474c0 0 .22-1.83 2.44-1.474zM296.414 297.578a1.746 1.746 0 0 1 2.966 1.245c0 .035 0 .065-.002.102h-.002c-.03.377-.151.846-.434 1.427 0 0-.49.936-.882 1.365l-.035.033a1.054 1.054 0 0 1-1.607-.129h-.006c-.192.268-.507.44-.862.44-.292 0-.556-.12-.747-.311l-.035-.033c-.39-.429-.882-1.365-.882-1.365-.284-.583-.405-1.054-.432-1.427h-.008c-.004-.035-.004-.065-.004-.102a1.747 1.747 0 0 1 2.972-1.245M293.83 294.328s.367 1.834 1.966 1.44c0 .001-.049-1.573-1.967-1.44z"/><path d="M296.363 297.208s-.018-1.883-.213-2.373c-.196-.491.657 0 .657 0l-.444 2.373z"/></g><g fill="#93278F" stroke="#93278F" stroke-linecap="round" stroke-linejoin="round"><path stroke-width=".165" d="m285.016 296.277 3.45 4.532 3.744-1.812-3.357-4.493-3.837 1.773zM284.595 296.727l3.391 4.464-.098 1.592-3.422-4.474.129-1.582z"/><path opacity=".75" stroke-width=".271" d="m292.119 299.851-3.531 1.743-.006.053 3.528-1.743.009-.053zM292.051 300.81l-3.531 1.743-.006.052 3.527-1.742.01-.053z"/></g><g stroke="#93278F" stroke-linejoin="round"><g fill="none" stroke-width=".03"><path d="m296.538 293.463-3.323-3.989h6.647l-3.324 3.989z" stroke-width=".4431267"/><path d="m293.215 289.474 1.108-1.329h4.43l1.109 1.33h-6.647z" stroke-width=".4431267"/><path d="m294.987 288.145 1.551 5.318 1.551-5.318" stroke-width=".4431267"/></g><path opacity=".1" fill="#FFF" stroke-width=".44328576000000003" d="m296.535 293.467-3.323-3.989h6.647l-3.324 3.989z"/><path opacity=".1" fill="#FFF" stroke-width=".44328576000000003" d="m293.212 289.478 1.108-1.329h4.43l1.109 1.33h-6.647z"/></g><g fill="#93278F" stroke="#93278F"><path stroke-width=".1052862" d="M284.185 288.214c1.288-.69 2.388-.62 3.476-1.214a3.06 3.06 0 0 0 1.421-.014c1.234.568 2.318.66 3.476 1.242-.096.609-.308 1.134-.663 1.558a2.694 2.694 0 0 0-1.228-.331l-.028 4.139c-1.692.314-3.126.179-4.526-.014l-.014-4.111c-.493-.014-.869.168-1.255.331-.37-.509-.544-1.042-.66-1.586z"/><path stroke-width=".0526431" d="M284.378 288.144c.115.567.32 1.095.717 1.544M286.171 293.359c1.481.244 2.962.295 4.443-.014M287.647 287.014c-.013.122.09.67.732.703.628.034.75-.607.731-.69"/><path stroke-width=".0526431" d="M287.375 287.161c-.013.123.24.795.965.814.739.02 1.04-.772 1.021-.856"/><path stroke-width=".0526431" d="M287.706 287.261c.45.118.846.093 1.334-.01M286.108 287.575c.135.52.36 1.13-.014 1.862M290.646 287.584c-.135.521-.36 1.132.014 1.864M292.38 288.13c-.116.566-.322 1.095-.718 1.546"/></g></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

1
src/icons/osm/disque.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg"><circle style="opacity:1;fill:#ac39ac;stroke-width:0" cx="2.5" cy="2.5" r="2.5"/></svg>

After

Width:  |  Height:  |  Size: 127 B

1
src/icons/osm/diy.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#93278F" stroke="#93278F" stroke-width=".248" stroke-linecap="round" stroke-linejoin="round" d="m291.675 280.941.009 1.934.844.463.84-.475-.01-1.934.875-.006.504 2.709-1.554 1.068.343 9.491c.014 1.413-2.002 1.308-1.957.045l.219-9.559-1.627-1.018.572-2.719h.942zm.875 12.901a.454.454 0 0 0-.451.454.454.454 0 0 0 .454.451.454.454 0 0 0 .451-.454.447.447 0 0 0-.454-.451z"/><path fill="#93278F" d="m280.147 283.315.077-.05c.492-.986 3.12-1.682 3.616-.449.042.229.299.454.564.492l.007 4.153c-.232 0-.488.262-.493.495l-.128 6.729c-.012.612.49.621.756.623l1.232-.002c.269 0 .805-.177.789-.697l-.185-6.654c-.006-.232-.261-.487-.492-.49l-.001-.002-.005-4.168c.418-.022.643-.213.786-.464.276-.485.861-.326 1.361-.283l-.001.204c.002.307.276.551.618.551.342 0 .616-.247.615-.552l-.001-1.361c-.002-.306-.276-.551-.617-.549-.309 0-.552.204-.597.47-.991-.056-.825-.379-2.123-.444l-2.333-.021c-1.648.016-2.725 1.098-3.445 2.469z"/></svg>

After

Width:  |  Height:  |  Size: 1021 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8 2c-1.16 0-2.332.505-3.125 1.5C4.188 4.363 4 5 3.906 6 1.01 6.024 1 7.082 1 14h14c0-6.918-.01-7.976-2.906-8-.094-1-.298-1.654-.969-2.5A3.978 3.978 0 0 0 8 2zm0 2c1.281-.005 2 1 2.063 2H5.936C6 5 6.72 4.005 8 4zM7 7h2v2h2v2H9v2H7v-2H5V9h2z"/></svg>

After

Width:  |  Height:  |  Size: 318 B

20
src/icons/osm/doctors.svg Normal file
View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="14"
height="14"
viewBox="0 0 14 14">
<rect
width="14"
height="14"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="M 7,1 C 5.83929,1 4.667834,1.5047052 3.875,2.5 3.187514,3.3630449 3,4 2.90625,5.0000004 0.01009,5.0238004 0,6.0817104 0,13 l 14,0 C 14,6.0817104 13.9899,5.0237504 11.09375,5.0000004 11,4 10.795537,3.3460958 10.125,2.5 9.334655,1.5027279 8.16071,1 7,1 z M 7,3 C 8.281412,2.99511 9,4 9.0625,5.0000004 l -4.125,0 C 5,4 5.718588,3.0048937 7,3 z m -1,3.0000004 2,0 L 8,8 l 2,0 0,2 -2,0 0,2 -2,0 0,-2 -2,0 0,-2 2,0 z"
id="doctor" />
</svg>

After

Width:  |  Height:  |  Size: 818 B

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="14"
height="14"
viewBox="0 0 14 14">
<rect
width="14"
height="14"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="m 1,6 1.5,8 5,0 L 9,6 z M 2.18,7 7.81,7 7.44,9 2.55,9 M 4,5 C 4,3 5,2 7,2 L 8,2 8,1 7,1 C 6,1 6,0 7,0 l 3,0 c 1,0 1,1 0,1 l -1,0 0,1 4,0 0,1.5 -6,0 C 5.91526,3.49111 5.5,3.9824765 5.5,5 z"
id="drinking-water" />
</svg>

After

Width:  |  Height:  |  Size: 603 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="300" height="500" xml:space="preserve"><path fill="#00F" d="M146 262.4h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2z"/><path fill="#FFF" d="M145.6 264h8.8v8.8h-8.8z"/><circle cx="147.2" cy="265.6" r=".6"/><path d="M146.6 266.4h1.2a.6.6 0 0 1 .6.6v1.6a.6.6 0 0 1-.6.6h-1.2a.6.6 0 0 1-.6-.6V267a.6.6 0 0 1 .6-.6z"/><path d="M146.76 268.8c.199 0 .36.269.36.601v2.399c0 .331-.161.601-.36.601-.199 0-.36-.27-.36-.601v-2.4c0-.332.161-.6.36-.6zM147.64 268.8c.199 0 .36.269.36.601v2.399c0 .331-.162.601-.36.601-.199 0-.36-.27-.36-.601v-2.4c0-.332.161-.6.36-.6z"/><circle cx="150" cy="265.6" r=".6"/><path d="M149.4 266.4h1.2a.6.6 0 0 1 .6.6v1.6a.6.6 0 0 1-.6.6h-1.2a.6.6 0 0 1-.6-.6V267a.6.6 0 0 1 .6-.6z"/><path d="M149.56 268.8c.199 0 .36.269.36.601v2.399c0 .331-.162.601-.36.601-.199 0-.36-.27-.36-.601v-2.4c0-.332.161-.6.36-.6zM150.44 268.8c.199 0 .36.269.36.601v2.399c0 .331-.161.601-.36.601-.199 0-.36-.27-.36-.601v-2.4c0-.332.161-.6.36-.6z"/><g><circle cx="152.8" cy="265.6" r=".6"/><path d="M152.199 266.4h1.201a.6.6 0 0 1 .6.6v1.6a.6.6 0 0 1-.6.6h-1.201a.6.6 0 0 1-.6-.6V267c.001-.332.27-.6.6-.6z"/><path d="M152.359 268.8c.199 0 .359.269.359.601v2.399c0 .331-.16.601-.359.601-.199 0-.359-.27-.359-.601v-2.4c0-.332.16-.6.359-.6zM153.24 268.8c.199 0 .359.269.359.601v2.399c0 .331-.16.601-.359.601-.199 0-.361-.27-.361-.601v-2.4c0-.332.162-.6.361-.6z"/></g><path fill="none" stroke="#00F" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round" d="m145.6 258 2-2.4 2 2.4-2-2.4v5.599M154.8 258.8l-2 2.399-2-2.399 2 2.399V255.6"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#29ABE2" d="M287.802 290.459a.173.173 0 0 0-.173.168l.057 8.156c.001.212.14.379.314.529.174.152.402.289.652.412.5.242 1.079.42 1.5.42.544 0 1.185-.211 1.809-.416s1.234-.399 1.638-.399c.404 0 .891.192 1.414.396s1.084.419 1.67.419c1.153 0 2.434-.651 2.434-.651a.173.173 0 0 0 .092-.148v-8.526c-.001-.057-.031-.111-.079-.141s-.111-.033-.161-.008c0 0-1.26.617-2.285.617-.502 0-1.029-.193-1.549-.396-.52-.204-1.031-.419-1.535-.419s-1.117.212-1.74.417-1.252.399-1.706.399c-.453 0-1.032-.197-1.486-.399s-.786-.404-.786-.404a.158.158 0 0 0-.08-.026z"/><path fill="#29ABE2" d="M287.332 290.393a.173.173 0 0 0-.166.166v15.352c0 .087.079.166.166.166h.486a.173.173 0 0 0 .166-.166v-15.352a.172.172 0 0 0-.166-.166h-.486z"/></svg>

After

Width:  |  Height:  |  Size: 815 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0071BC" stroke="#EEE" stroke-width=".085" d="M284.335 283.214c-1.033 0-1.614.535-1.614 1.626v11.253c0 1.021.522 1.556 1.555 1.556h11.3c1.033 0 1.557-.508 1.557-1.556V284.84c0-1.065-.523-1.626-1.589-1.626 0 0-11.212-.004-11.209 0z"/><g fill="#FFF"><path d="M290.084 284.308c-.578.062-2.684 1.027-2.746 5.987-.065 5.228 2.167 6.327 2.752 6.317v-3.452c-.482 0-.578-.523-.689-1.607a12.541 12.541 0 0 1 0-2.484c.068-.619.181-1.223.687-1.223l-.004-3.538zM291.682 296.618a.383.383 0 0 0 .384-.387l.003-.003-.003-2.691a.382.382 0 0 0-.384-.381h-.979v3.461s.976.002.976 0l.003.001zM291.682 287.846a.383.383 0 0 0 .384-.386h.003l-.003-2.771a.381.381 0 0 0-.384-.38h-.979v3.538l.976.003.003-.004z"/></g></svg>

After

Width:  |  Height:  |  Size: 797 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="412" height="321" xml:space="preserve"><path fill="#00F" d="M251.466 208.421a3.304 3.304 0 0 1-.402-.124c-.817-.325-1.449-1.279-1.449-2.188 0-.807.502-1.664 1.181-2.017.461-.238.525-.249 1.66-.264a22.222 22.222 0 0 0 1.11-.033c.054-.012.538-.47 1.293-1.222l1.207-1.205.011-1.729.01-1.73.096-.18c.361-.685 1.335-.83 1.883-.282.27.271.331.466.331 1.063 0 .347.012.475.043.475.021 0 .654-.608 1.402-1.35 1.271-1.266 1.378-1.36 1.643-1.499.157-.08.411-.182.564-.226.275-.08.308-.083 2.044-.083 1.74 0 1.766.002 1.973.08.672.253 1.237.837 1.451 1.501.117.362.131.896.034 1.26-.193.72-.792 1.395-1.465 1.653-.225.087-.253.09-1.34.101-.612.005-1.15.02-1.2.03-.057.012-1.432 1.36-3.774 3.696-2.416 2.411-3.763 3.73-3.909 3.826a3.263 3.263 0 0 1-.87.412c-.185.054-.403.062-1.762.071-1.209.01-1.6 0-1.765-.036zm3.315-1.197c.097-.026.247-.084.335-.127.113-.058 1.213-1.132 3.932-3.846 3.761-3.752 3.86-3.847 4.196-3.96.06-.02.631-.046 1.271-.058 1.325-.023 1.32-.022 1.6-.34.293-.334.39-.859.224-1.223-.094-.208-.362-.502-.553-.604-.14-.073-.17-.076-1.764-.076-1.49 0-1.639.006-1.816.066-.185.062-.374.245-4.02 3.883-2.106 2.1-3.884 3.85-3.952 3.89-.296.174-.442.193-1.599.208-1.25.015-1.305.026-1.589.33-.275.294-.348.805-.17 1.206.13.296.438.57.748.665.05.014.74.028 1.534.03 1.101.002 1.487-.008 1.623-.044zm2.054-10.407a1.187 1.187 0 0 1-.779-1.133c0-.453.27-.866.691-1.058.43-.196.928-.115 1.284.208.604.545.446 1.572-.295 1.93-.213.102-.698.131-.9.053z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="412" height="321" xml:space="preserve"><path fill="#00F" d="M251.467 208.422a3.043 3.043 0 0 1-.402-.125c-.817-.324-1.449-1.279-1.449-2.188 0-.807.502-1.664 1.182-2.018.461-.237.524-.248 1.658-.264a22.222 22.222 0 0 0 1.11-.033c.055-.012.54-.47 1.294-1.222l1.207-1.205.011-1.729.011-1.729.096-.18c.361-.685 1.334-.83 1.883-.282.27.271.331.466.331 1.062 0 .348.012.476.043.476.021 0 .653-.608 1.401-1.35 1.271-1.267 1.38-1.36 1.644-1.499.157-.08.411-.183.563-.227.275-.08.31-.083 2.045-.083 1.74 0 1.766.002 1.973.08.672.253 1.236.837 1.451 1.501.117.362.131.896.033 1.26-.192.72-.79 1.396-1.465 1.653-.225.087-.252.09-1.34.101-.61.006-1.15.02-1.2.03-.057.013-1.432 1.36-3.773 3.696-2.416 2.411-3.763 3.73-3.909 3.826a3.263 3.263 0 0 1-.87.412c-.185.054-.403.062-1.762.07-1.21.012-1.602.002-1.766-.033zm3.314-1.198c.098-.026.247-.084.335-.127.113-.059 1.213-1.133 3.933-3.846 3.76-3.753 3.858-3.848 4.195-3.96.061-.022.631-.047 1.271-.059 1.324-.022 1.32-.022 1.6-.34.293-.335.391-.859.225-1.224-.095-.207-.362-.502-.554-.604-.14-.073-.17-.076-1.764-.076-1.49 0-1.64.006-1.816.066-.185.062-.374.244-4.02 3.883-2.106 2.1-3.884 3.85-3.952 3.89-.296.175-.44.193-1.6.208-1.25.016-1.305.026-1.588.33-.275.294-.349.805-.172 1.206.131.296.44.57.75.665.05.014.738.027 1.533.03 1.102.004 1.488-.007 1.624-.042zm2.055-10.407a1.187 1.187 0 0 1-.779-1.134c0-.452.27-.865.69-1.057a1.173 1.173 0 0 1 1.284.207c.604.545.446 1.572-.295 1.93-.213.103-.698.132-.9.054zM262.631 208.461h3.246c.914 0 .914-1.371 0-1.371h-1.645l3.153-3.153c.687-.686-.32-1.692-1.052-.961l-3.107 3.107v-1.646c0-.867-1.371-.914-1.371 0v3.246c0 .46.319.778.776.778z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="412" height="321" xml:space="preserve"><path fill="#00F" d="M251.467 208.422a3.043 3.043 0 0 1-.402-.125c-.817-.324-1.449-1.279-1.449-2.188 0-.807.502-1.664 1.182-2.018.461-.237.524-.248 1.658-.264a22.222 22.222 0 0 0 1.11-.033c.055-.012.54-.47 1.294-1.222l1.207-1.205.011-1.729.011-1.729.096-.18c.361-.685 1.334-.83 1.883-.282.27.271.331.466.331 1.062 0 .348.012.476.043.476.021 0 .653-.608 1.401-1.35 1.271-1.267 1.38-1.36 1.644-1.499.157-.08.411-.183.563-.227.275-.08.31-.083 2.045-.083 1.74 0 1.766.002 1.973.08.672.253 1.236.837 1.451 1.501.117.362.131.896.033 1.26-.192.72-.79 1.396-1.465 1.653-.225.087-.252.09-1.34.101-.61.006-1.15.02-1.2.03-.057.013-1.432 1.36-3.773 3.696-2.416 2.411-3.763 3.73-3.909 3.826a3.263 3.263 0 0 1-.87.412c-.185.054-.403.062-1.762.07-1.21.012-1.602.002-1.766-.033zm3.314-1.198c.098-.026.247-.084.335-.127.113-.059 1.213-1.133 3.933-3.846 3.76-3.753 3.858-3.848 4.195-3.96.061-.022.631-.047 1.271-.059 1.324-.022 1.32-.022 1.6-.34.293-.335.391-.859.225-1.224-.095-.207-.362-.502-.554-.604-.14-.073-.17-.076-1.764-.076-1.49 0-1.64.006-1.816.066-.185.062-.374.244-4.02 3.883-2.106 2.1-3.884 3.85-3.952 3.89-.296.175-.44.193-1.6.208-1.25.016-1.305.026-1.588.33-.275.294-.349.805-.172 1.206.131.296.44.57.75.665.05.014.738.027 1.533.03 1.102.004 1.488-.007 1.624-.042zm2.055-10.407a1.187 1.187 0 0 1-.779-1.134c0-.452.27-.865.69-1.057a1.173 1.173 0 0 1 1.284.207c.604.545.446 1.572-.295 1.93-.213.103-.698.132-.9.054zM266.84 202.721h-3.246c-.914 0-.914 1.371 0 1.371h1.645l-3.153 3.153c-.687.686.32 1.692 1.052.961l3.107-3.107v1.646c0 .867 1.371.914 1.371 0v-3.246c-.001-.46-.319-.778-.776-.778z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580"><path d="M66.275 1.768c-41.335 0-64.571 21.371-64.571 65.036v450.123c0 40.844 20.895 62.229 62.192 62.229H515.92c41.307 0 62.229-20.315 62.229-62.229V66.804c0-42.601-20.922-65.036-63.521-65.036-.004 0-448.495-.143-448.353 0z" style="fill:#111;stroke:#eee;stroke-width:3.40799999"/><path style="fill:#fff;fill-opacity:1;stroke:#fff;stroke-width:20;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M149.09 48.36h13.608v498.345H149.09z"/><path style="fill:none;fill-opacity:1;stroke:#fff;stroke-width:20;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M151.417 81.762v207.292H472.38V81.762H151.417z"/><path style="fill:#fff;fill-opacity:1;stroke:#fff;stroke-width:1.08533156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M145.335 84.369v213.2h330.11v-213.2h-330.11zm180.369 6.953 78.415 76.753h.679v.644l16.076 15.738-16.076-.034v101.716H251.427V184.253l-20.011-.034 30.627-30.185v-42.532h27.404v15.534l36.257-35.714z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580"><path d="M66.275 1.768c-41.335 0-64.571 21.371-64.571 65.036v450.123c0 40.844 20.895 62.229 62.192 62.229H515.92c41.307 0 62.229-20.315 62.229-62.229V66.804c0-42.601-20.922-65.036-63.521-65.036-.004 0-448.495-.143-448.353 0z" style="fill:#111;stroke:#eee;stroke-width:3.40799999"/><path style="fill:#fff;fill-opacity:1;stroke:#fff;stroke-width:7.73715258;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" d="M404.439 179.439h5.264v192.789h-5.264z" transform="translate(-68.204 89.764) scale(1.16232)"/><path d="M405.339 192.36v80.193h124.167v-80.192H405.339z" style="fill:#fff;fill-opacity:1;stroke:#fff;stroke-width:7.73715258;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" transform="translate(-68.204 89.764) scale(1.16232)"/><path style="fill:#fff;fill-opacity:1;stroke:#fff;stroke-width:2.03705359;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" d="m223.243 71.952 178.624 178.805-46.174-.064v190.91H89.832V250.375l-43.558-.064 57.483-60.655v-81.827h57.435v29.155l62.05-65.032h0z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580"><path d="M66.275 1.768c-41.335 0-64.571 21.371-64.571 65.036v450.123c0 40.844 20.895 62.229 62.192 62.229H515.92c41.307 0 62.229-20.315 62.229-62.229V66.804c0-42.601-20.922-65.036-63.521-65.036-.004 0-448.495-.143-448.353 0z" style="fill:#111;stroke:#eee;stroke-width:3.40799999"/><path style="opacity:.25;fill:#fff;fill-opacity:1;stroke:none" d="m284.888 37.391 221.536 221.76-57.266-.078v236.774H119.426V258.678l-54.022-.079 71.293-75.227V81.887h71.233v36.16l76.958-80.656z"/><path d="m284.888 37.391 221.536 221.76-57.266-.078v236.774H119.426V258.678l-54.022-.079 71.293-75.227V81.887h71.233v36.16l76.958-80.656h0z" style="fill:none;stroke:#fff;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"/><path style="fill:#fff;fill-opacity:1;stroke:#fff;stroke-width:20;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" d="M206.406 274.094V538.75h6.688v-146.5h152.031V290.469H213.094v-16.375h-6.688z" transform="translate(8.866 -76.38)"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#754C24" d="m296.159 276.068-1.027 3.625h-5.234l1.26 10.002h4.283l1.279-10.002h-.969l1.008-3.451-.6-.174zm-6.882 9.461c.103-.905-.582-1.396-2.055-1.473h-3.548c-1.473.077-2.165.568-2.074 1.473h7.677zm-7.676 2.714c-.09.905.601 1.389 2.074 1.454h3.548c1.473-.064 2.158-.549 2.055-1.454h-7.677zm7.347-2.016h-7.037a.636.636 0 0 0-.465.194.614.614 0 0 0-.194.446c0 .194.065.353.194.475s.284.184.465.184h7.037a.654.654 0 0 0 .465-.184.626.626 0 0 0 .193-.475.614.614 0 0 0-.193-.446.635.635 0 0 0-.465-.194z"/></svg>

After

Width:  |  Height:  |  Size: 607 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#754C24" d="M288.083 298.697c-1.207-.682-1.943-2.273-1.399-4.652.381-1.669 1.492-3.729.641-5.445 1.032.714 2.105 2.411 3.188 4.328.074-2.073-1.001-3.431-.228-6.263.531 3.504 2.659 3.721 3.739 6.908.46-1.498 1.415-1.991.949-5.712 4.697 6.416 2.02 8.694 1.082 10.989l.303-3.188c-1.473 4.259-2.653 5.045-3.72 5.997.597-1.999.831-3.998-.379-5.997-.294 3.282-1.124 2.6-1.291 5.238-1.658-1.252-1.999-2.536-2.296-4.631-.226.244-.607 1.268-.589 2.428z"/><path fill="#754C24" d="M291.519 283.381c-1.229 4.988 1.015 4.944 2.258 7.875.872-4.519-1.738-3.502-2.258-7.875z"/></svg>

After

Width:  |  Height:  |  Size: 665 B

1
src/icons/osm/fish.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g fill="#93278F"><path d="M290.395 277.436a.028.028 0 0 0-.012.003c-.055.022-.348.345-.652.721l-.552.682-.4.03c-1.827.221-3.314.97-4.686 2.173-.284.3-1.354 1.297-1.288 1.539.022.024.276-.006.558.03.525.068 1.33.17 1.326.28-.002.056-.454.112-1.28.217-.709.09-.702.24.02.494.865.305 2.001.496 3.839.363 1.366.014 2.582-.471 3.87-.778.09-.005.355-.08.588-.17 1.403-.4 2.557-.794 3.703-.676 1.061.055 1.767.775 2.603 1.294.035 0 .248.139.473.307.61.457.766.392.528-.218-.197-.5-.521-1.64-.514-1.811.183-.565.373-1.255.62-1.799.142-.25.168-.501.055-.503a.844.844 0 0 0-.18.066c-.082.038-.294.136-.468.214s-.386.2-.47.276a2.75 2.75 0 0 1-1.675.467c-.69-.138-1.584-.247-2.274-.716-1.06-.57-1.15-.615-1.591-.77a4.898 4.898 0 0 1-.456-.177c-.01-.011.049-.083.133-.16.083-.077.145-.18.136-.226-.009-.047-.262-.175-.56-.29a2.996 2.996 0 0 1-.923-.552c-.198-.18-.4-.313-.47-.31zm-5.57 3.986a.276.276 0 1 1 0 .552.276.276 0 0 1 0-.552z"/><path d="M286.671 282.758c-.94-1.323-.755.022-.34-.922l2.213-1.702c4.99-1.34-1.818 1.466 1.524.798-.028.03.121.209.33.4.209.192.363.446.34.564-2.306 1.275.282 3.125-1.84 2.988-1.04-.068-2.718-1.995-2.227-2.126z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g fill="#93278F"><path d="M286.527 288.93c-.31.674-1.644 2.051-2.359 1.723-.715-.329-.541-2.238-.232-2.912.31-.674 1.353-1.219 1.79-.416.919-.181 1.11.931.801 1.605z"/><path d="M286.969 292.857c-.74.045-2.584-.481-2.632-1.267-.048-.785 1.717-1.534 2.457-1.579.74-.045 1.713.617 1.211 1.381.594.725-.296 1.42-1.036 1.465zM279.979 293.464c.413-.616 1.949-1.763 2.603-1.325s.179 2.295-.234 2.911c-.412.616-1.529.989-1.833.126-.936.033-.949-1.096-.536-1.712z"/><path d="M280.205 289.485c.728.14 2.383 1.108 2.235 1.88-.148.772-2.044 1.06-2.773.92-.728-.141-1.506-1.023-.83-1.639-.395-.849.64-1.301 1.368-1.161z"/><path d="M283.2 287.621c.34.659.6 2.559-.1 2.919s-2.095-.955-2.435-1.614-.125-1.816.777-1.665c.425-.835 1.419-.3 1.758.36z"/><path d="M284.617 291.425c0 .678-.559 1.228-1.249 1.228-.689 0-1.248-.55-1.248-1.228 0-.678.559-1.227 1.248-1.227.69 0 1.249.549 1.249 1.227z"/><path d="M283.133 295.016c-.258-.695-.287-2.613.451-2.887s1.965 1.2 2.223 1.896c.257.695-.095 1.818-.972 1.559-.522.777-1.444.127-1.702-.568z"/><path d="m283.179 291.053-.38 1.027c.109.016.25.171.319.031a.867.867 0 0 1 .968-.26 1.14 1.14 0 0 1-.025-.486 10.88 10.88 0 0 0-.861-.37l-.021.058zm2.376 1.969c.459.537.768 1.271.582 1.979-.061.269-.23.498-.413.688-.4 1.785-1.04 3.508-1.704 5.211-.011.144.3.15.421.238.209.085.419.169.628.256.714-1.826 1.399-3.677 1.816-5.596.155-.741.261-1.565-.109-2.26-.083-.136-.151-.308-.275-.397-.367-.035-.716-.17-1.069-.273l.123.154z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" xml:space="preserve"><g stroke="#603813"><path opacity=".985" fill="#FFF" stroke-width=".523" stroke-linecap="round" stroke-linejoin="round" d="M226.299 191.163c-.405.151-.964.379-1.172.379s-.379-.17-.379-.379.171-.378.379-.378c.199.008.778.243 1.172.378z"/><path opacity=".985" fill="#FFF" stroke-width=".523" stroke-linecap="round" stroke-linejoin="round" d="M225.934 191.163c.406.151.963.379 1.173.379a.379.379 0 0 0 0-.757c-.201.008-.778.243-1.173.378z"/><path fill="none" stroke-width="1.045" stroke-linecap="round" d="M226.11 191.145v2.306l.027.898"/><path opacity=".985" fill="#603813" stroke-width="1.045" stroke-linecap="round" stroke-linejoin="round" d="M226.905 194.149c0 .877-.356 1.589-.794 1.59-.438 0-.795-.711-.796-1.587v-.003c0-.876.355-1.587.793-1.589.439-.001.796.711.797 1.587v.002z"/><path fill="none" stroke-width="1.742" d="m230.344 194.339-6.199-.035-.492-.003c-2.419-.037-2.269 2.231-2.269 2.231"/></g><path fill="#603813" d="M225.405 198.584h-.006c.006-.005.011-.011.011-.017 0-.129-1.777-.234-3.967-.234-2.188 0-3.966.105-3.966.234 0 .006.005.012.011.017h-.011l1.237 9.438h.007c-.011.005-.018.012-.018.018 0 .091 1.228.163 2.739.163 1.513 0 2.739-.072 2.739-.163 0-.006-.005-.013-.017-.018l1.241-9.438zm-2.033 8.746c-.063.061-3.824.032-3.888-.025l-1.175-8.149c2.006.007 3.451.107 6.179-.056l-1.116 8.23z"/><path opacity=".1" fill="#603813" d="m217.982 199.002 6.791.055-1.1 8.696-4.647.055-1.044-8.806z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

1
src/icons/osm/fuel.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0071BC" d="M271.892 284.471c-.254 0-.508.184-.508.478l-.005 9.458h.523l.005.748 4.803-.003.003-.745.45.004v-9.559c0-.204-.118-.381-.34-.381h-4.931zm.803 1.045h3.147c.174 0 .311.071.311.311v2.486c0 .168-.09.291-.282.291l-3.168-.008a.33.33 0 0 1-.34-.332l.016-2.445c0-.196.136-.303.316-.303z"/><path fill="#0071BC" d="m271.407 287.722-.48-.003c-.003 1.956.011 5.815.019 5.882.018.141.007.287-.029.42-.753 1.898-3.191 1.026-2.845-.821.76-1.832 1.827-3.071 2.357-5.232l.047 1.606c-.478.93-1.32 2.562-1.973 3.926-.055 1.259 1.443 1.674 1.912.322.209-2.366-.008-4.946-.012-7.419.305-.906.642-.993.983-.95"/></svg>

After

Width:  |  Height:  |  Size: 706 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0071BC" d="M275.208 276.082c-.28 0-.559.202-.559.526l-.006 10.403h.576l.005.823 5.283-.003.004-.82.495.004V276.5c0-.224-.13-.418-.374-.418h-5.424zm.884 1.149h3.462c.191 0 .342.078.342.342v2.735c0 .185-.099.32-.311.32l-3.484-.009a.365.365 0 0 1-.375-.365l.018-2.689c0-.216.149-.334.348-.334z"/><path fill="#0071BC" d="m274.674 279.657-.529-.003a701.23 701.23 0 0 0 .021 6.47c.019.155.007.315-.032.462-.829 2.088-3.511 1.129-3.13-.903.836-2.015 2.009-3.379 2.593-5.756l.052 1.767c-.525 1.022-1.452 2.817-2.171 4.318-.061 1.386 1.588 1.842 2.104.355.23-2.603-.009-5.44-.013-8.161.335-.997.706-1.092 1.081-1.045M279.111 289.468h1.051v2.563h1.64v.838h-2.691v-3.401zm-3.832 0h1.748c.38 0 .666.091.855.271.189.181.284.438.284.773 0 .344-.104.612-.31.805-.206.193-.521.291-.945.291h-.576v1.262h-1.056v-3.402zm1.055 1.45h.258c.203 0 .345-.035.427-.105s.123-.16.123-.271a.378.378 0 0 0-.107-.271c-.071-.075-.205-.112-.401-.112h-.299l-.001.759zm-3.527.719v-.707h1.624v1.449c-.311.213-.586.357-.825.434a2.755 2.755 0 0 1-.851.115c-.403 0-.732-.068-.987-.207a1.43 1.43 0 0 1-.591-.613 2.03 2.03 0 0 1-.21-.939c0-.371.076-.693.229-.969a1.48 1.48 0 0 1 .673-.625c.23-.11.541-.165.931-.165.376 0 .657.034.843.102.187.068.341.173.464.316.123.143.216.325.277.544l-1.014.181a.55.55 0 0 0-.212-.294.664.664 0 0 0-.382-.102c-.23 0-.414.08-.551.24s-.206.414-.206.76c0 .369.069.631.208.789s.332.236.579.236c.118 0 .229-.018.336-.051.107-.035.229-.092.367-.174v-.32h-.702z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0071BC" d="M275.208 276.082c-.28 0-.559.202-.559.526l-.006 10.403h.576l.005.823 5.283-.003.004-.82.495.004V276.5c0-.224-.13-.418-.374-.418h-5.424zm.884 1.149h3.462c.191 0 .342.078.342.342v2.735c0 .185-.099.32-.311.32l-3.484-.009a.365.365 0 0 1-.375-.365l.018-2.689c0-.216.149-.334.348-.334z"/><path fill="#0071BC" d="m274.674 279.657-.529-.003a701.23 701.23 0 0 0 .021 6.47c.019.155.007.315-.032.462-.829 2.088-3.511 1.129-3.13-.903.836-2.015 2.009-3.379 2.593-5.756l.052 1.767c-.525 1.022-1.452 2.817-2.171 4.318-.061 1.386 1.588 1.842 2.104.355.23-2.603-.009-5.44-.013-8.161.335-.997.706-1.092 1.081-1.045M272.659 289.298h1.051v2.564h1.64v.837h-2.691v-3.401zm3.17 0h1.748c.38 0 .666.091.855.271.189.181.284.438.284.773 0 .343-.104.612-.31.805s-.521.29-.945.29h-.576v1.262h-1.056v-3.401zm1.055 1.45h.258c.203 0 .345-.035.427-.105s.123-.161.123-.271a.378.378 0 0 0-.107-.271c-.071-.075-.205-.112-.401-.112h-.299v.759zm4.094.72v-.708h1.624v1.45c-.311.212-.586.356-.825.433a2.785 2.785 0 0 1-.851.115c-.403 0-.732-.069-.987-.207a1.415 1.415 0 0 1-.591-.614 2.022 2.022 0 0 1-.21-.938c0-.371.076-.694.229-.969a1.48 1.48 0 0 1 .673-.625c.23-.11.541-.165.931-.165.376 0 .657.034.843.102.187.068.341.173.464.316.123.143.216.325.277.544l-1.014.181a.55.55 0 0 0-.212-.294.664.664 0 0 0-.382-.102c-.23 0-.414.08-.551.24-.137.16-.206.413-.206.76 0 .368.069.631.208.789.139.157.332.236.579.236.118 0 .229-.017.336-.051s.229-.092.367-.174v-.32h-.702z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" xml:space="preserve"><path fill="#93278F" stroke="#93278F" stroke-width=".035" stroke-linecap="round" stroke-linejoin="round" d="M205.974 194.623s-.362 3.737-.388 4.526-.065 3.312-.078 3.828c-.013.518.311 4.694.389 4.915.077.219-.221.103-.221.103s-.298 0-.298-.077-.374-2.237-.4-2.443c-.026-.207-.155-1.992-.155-1.992s-.479.22-.943.388c-.467.169-1.255.388-1.255.388l-.117 5.277-.232.063h-.31l-.272-5.288s-.167.051-.349.038l-.182-.014s.194 1.733.22 1.876c.026.143.182 1.151.182 1.151l-.194.103-.284-.025s-.298-1.177-.336-1.475c-.039-.297-.181-1.72-.181-1.72l-3.467-.337-.297 4.851-.246.077-.311-.025v-5.199s-.129-.116-.142-.246c-.013-.129-.091-.556.064-.802.155-.245.22-.284.388-.362.168-.076 1.953-.387 2.34-.452.388-.065 1.345-.143 1.345-.143s.078-2.134.116-3.246c.039-1.112.143-3.181.246-3.479s.091-.414.22-.492.245-.116.582-.09c.336.026 3.893.143 4.178.207.284.064.388.116.388.116z"/></svg>

After

Width:  |  Height:  |  Size: 958 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g fill="#93278F" stroke="#93278F" stroke-width=".518" stroke-linecap="round" stroke-linejoin="round"><path d="m285.786 332.167.058-7.13c.25-.218 2.882-.634 6.63-.089l-.059 7.13c-1.23 1.113-5.691.823-6.63.09h0z" stroke-width=".5427448600000001"/><path d="M288.438 326.039c.474-1.573.913-3.153 1.001-4.802l.855.117c-.446 1.59-.598 3.255-.736 4.922l-1.12-.237h0zM292.091 325.42c-.118.764.702-.667 1.616-.6.527.029 1.084.351 1.21.894.108.409.092.786-.074 1.176-.223.401-.676.809-1.01 1.078-.546.488-1.306 1.045-1.803 1.654-.05.083-.045.357.102.359.275-.146.482-.384.725-.573a37.035 37.035 0 0 0 1.815-1.677c.294-.358.595-.766.628-1.138.098-.576.007-1.24-.442-1.655-.576-.649-1.865-.624-2.617.14-.132.131-.016.215-.15.343h0zM282.048 325.522l5.068 4.714-.059 2.12-5.745-6.156.736-.678z" stroke-width=".5427448600000001"/><path d="M282.163 326.171c.356-.317.694-1.104.578-2.242-1.264.426-2.74 2.152-2.931 2.77.832.218 1.804.08 2.353-.528z" stroke-width=".5427448600000001"/></g></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

1
src/icons/osm/gift.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g fill="#93278F"><path d="m295.186 293.418-.006.01a1.635 1.635 0 0 1-.142.157 1.592 1.592 0 0 1-.54.39c-.038.017-.077.029-.116.042v2.811h5.705v-2.9a.51.51 0 0 0-.51-.51h-4.391zm4.9 3.409v1.615-1.615zm0 1.615h-5.705v3.284h5.194a.51.51 0 0 0 .511-.51v-2.774zm-5.705 0v-1.615 1.615zM287.561 293.418a.508.508 0 0 0-.51.51v2.9h5.916v-2.86a2.053 2.053 0 0 1-.376-.204 1.98 1.98 0 0 1-.327-.297c-.013-.016-.022-.033-.036-.049h-4.667zm5.406 3.409v1.615-1.615zm0 1.615h-5.916v2.774c0 .283.227.51.51.51h5.406v-3.284zm-5.916 0v-1.615 1.615zM294.803 292.109a1.098 1.098 0 1 1-2.195-.002 1.098 1.098 0 0 1 2.195.002zM300.16 289.148c-1.136-.01-3.85 1.02-4.802 2.08.234.126.613.2 1.241.15 1.24-.8 3.01-1.478 4.116-1.338.264-.324.017-.67-.146-.789-.075-.068-.218-.102-.409-.103z"/><path d="M295.439 292.696c-.096.067 4.37-.105 5.594-1.506.822-.945-.708-2.318-.24-1.833 1.269 1.317-4.51 2.517-5.41 1.978.288.453.274.907.056 1.36z"/><g><path d="M287.336 289.099c1.135-.01 3.85 1.02 4.801 2.08-.234.125-.613.2-1.24.15-1.24-.8-3.012-1.48-4.118-1.338-.263-.323-.015-.67.146-.789.077-.07.22-.102.411-.103z"/><path d="M292.058 292.647c.096.068-4.371-.104-5.593-1.506-.824-.944.707-2.317.24-1.832-1.27 1.317 4.509 2.517 5.408 1.978-.29.452-.274.906-.055 1.36z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g fill="#93278F"><path d="M293.808 285.16s-1.134 3.843-4.465 2.697c-.001.003.401-3.347 4.465-2.697zM288.224 289.914a3.193 3.193 0 0 1 5.428 2.278c0 .065 0 .121-.003.188h-.007c-.056.69-.275 1.548-.795 2.612 0 0-.895 1.712-1.612 2.498l-.065.062a1.932 1.932 0 0 1-2.941-.236h-.009c-.35.488-.925.805-1.575.805a1.918 1.918 0 0 1-1.368-.569l-.065-.062c-.712-.786-1.613-2.498-1.613-2.498-.52-1.064-.74-1.928-.789-2.612h-.016c-.009-.064-.009-.12-.009-.188a3.195 3.195 0 0 1 3.201-3.191 3.175 3.175 0 0 1 2.238.913M283.495 283.968s.674 3.357 3.597 2.635c0 .001-.089-2.881-3.597-2.635z"/><path d="M288.13 289.238s-.033-3.447-.39-4.346 1.201 0 1.201 0l-.811 4.346z"/></g></svg>

After

Width:  |  Height:  |  Size: 753 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path opacity=".351" fill="#29ABE2" stroke="#FFF" stroke-width=".043" d="m290.837 270.502-7.481 7.679h1.496V289.7h4.489v-5.854h3.096v5.854h4.386v-11.519h1.497l-7.483-7.679z"/><path fill="#FFF" stroke="#29ABE2" stroke-width="1.345" d="m281.544 280.066-.12 9.366"/><path fill="#29ABE2" stroke="#29ABE2" stroke-width="1.345" d="m281.664 285.95 18.012.12M299.796 289.072l.12-6.124"/><path fill="#29ABE2" stroke="#29ABE2" stroke-width="1.547" d="M289.349 282.528h7.805a.84.84 0 1 1 0 1.681h-7.805a.84.84 0 0 1 0-1.681z"/><path fill="#29ABE2" stroke="#29ABE2" stroke-width=".092" d="M287.146 280.847c0 .641-.586 1.16-1.309 1.161-.724 0-1.311-.519-1.311-1.16v-.001c0-.641.586-1.16 1.31-1.16.724 0 1.31.519 1.31 1.16z"/><path fill="#29ABE2" stroke="#29ABE2" stroke-width="1.345" d="M283.315 283.849h3.362a.15.15 0 1 1 0 .3h-3.362a.15.15 0 1 1 0-.3z"/></svg>

After

Width:  |  Height:  |  Size: 935 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M7 .25c-.375 0-.75.25-.75.75v13h1.5V1c0-.5-.375-.75-.75-.75zM2 1 0 2.5 2 4h4V1H2zm6 3v3h4l2-1.5L12 4H8z" style="fill:#000;fill-opacity:1;stroke:none"/></svg>

After

Width:  |  Height:  |  Size: 226 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g fill="#93278F" stroke="#93278F"><path stroke-width=".279" stroke-linecap="round" stroke-linejoin="round" d="M298.335 269.321s-3.558-.449-3.974-.221c-.417.229-2.77 12.412-2.475 12.906.294.494 4.167.468 4.167.468l-4.026-.573 2.472-12.696 3.836.116z"/><path stroke-width=".186" stroke-linecap="square" d="m294.236 270.279 3.859.522-3.928-.074.069-.448h0zM294.015 271.718l3.859.522-3.928-.074.069-.448zM293.756 273.156l3.859.522-3.929-.074.07-.448zM293.47 274.595l3.859.522-3.928-.074.069-.448h0zM293.204 276.033l3.859.522-3.928-.074.069-.448zM292.969 277.472l3.859.522-3.928-.074.069-.448zM292.624 278.91l3.859.522-3.928-.075.069-.447zM292.402 280.349l3.858.522-3.928-.075.07-.447z"/></g><g fill="#93278F" stroke="#93278F" stroke-width=".24" stroke-linecap="round" stroke-linejoin="round"><path d="M301.007 268.415c-.124.011.49 3.92.74 4.882.38 1.467.014.173.572 2.513.818 3.427 1.676 6.24 2.054 6.647.57.615 1.672.413 2.025-.575.264-.74.41-1.769-.504-2.415-.906-.638-1.814.062-1.814.062l-3.037-11.105c-.005-.01-.018-.012-.036-.01zm4.197 11.179c.535.001 1.08.627 1.08 1.422v.003c0 .795-.547 1.46-1.084 1.458-.536-.001-1.101-.78-1.1-1.575s.567-1.31 1.104-1.308z" stroke-width=".29737679999999994"/><path d="M304.727 268.455c.124.01-.49 3.92-.74 4.881-.38 1.466-.012.174-.571 2.513-.82 3.429-1.677 6.242-2.053 6.65-.571.614-1.674.412-2.026-.576-.265-.742-.41-1.77.504-2.415.905-.638 1.814.061 1.814.061l3.037-11.106c.003-.007.016-.01.035-.008zm-4.198 11.18c-.537 0-1.08.627-1.08 1.422v.003c0 .795.548 1.46 1.085 1.46.536-.002 1.101-.78 1.1-1.576-.001-.796-.569-1.312-1.105-1.31z" stroke-width=".29737679999999994"/></g></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580"><defs><linearGradient id="a"><stop style="stop-color:#fff;stop-opacity:.341667" offset="0"/><stop style="stop-color:#fff;stop-opacity:0" offset="1"/></linearGradient><linearGradient id="b"><stop style="stop-color:#fff;stop-opacity:0" offset="0"/><stop style="stop-color:#ffa617;stop-opacity:.733333" offset="1"/></linearGradient></defs><path d="M66.275 1.768c-41.335 0-64.571 21.371-64.571 65.036v450.123c0 40.844 20.895 62.229 62.192 62.229H515.92c41.307 0 62.229-20.315 62.229-62.229V66.804c0-42.601-20.922-65.036-63.521-65.036-.004 0-448.495-.143-448.353 0z" style="fill:#111;stroke:#eee;stroke-width:3.40799999"/><path d="M282.291 185.446h10.568c58.945.118 92.763 56.245 92.997 94.23-.234 7.398-2.054 13.739-10.45 13.563-17.672.176-11.331-28.24-25.891-52.429-6.87-11.918-29.003-33.465-54.249-33.289h-9.276c-13.504-.176-38.984 7.633-56.069 33.29-21.311 30.998-7.338 53.72-25.245 53.602-2.76.117-10.685-.705-10.568-13.503.822-58.3 54.248-95.346 88.183-95.464z" style="fill:#fff"/><path d="M290.334 507.825c22.134.235 39.22-22.192 39.454-37.633v-32.056c-.235-65.638 68.691-91.53 68.456-157.226.235-61.53-55.364-108.028-107.91-107.91-43.563-.118-73.27 28.005-84.484 42.565-33.7 41.684-14.325 81.431-38.162 81.431-6.751 0-13.444-3.816-13.503-17.32-1.057-65.168 52.722-134.27 137.5-134.388 68.339.118 135.562 54.601 135.562 138.146 0 77.38-67.752 93.585-67.752 161.513v29.003c0 29.824-26.595 63.935-70.276 64.111-1.585-.47-3.464-1.056-5.519-1.233-8.043-2.407-13.62-10.861-11.683-19.08 2.29-7.163 8.924-8.924 17.906-9.864h.411v-.059z" style="fill:#fff"/><path transform="rotate(-45.097)" style="fill:#fff" d="M-138.979 376.999h24.365v66.518h-24.365z"/><path d="M232.74 335.158c-.235-7.515 5.87-13.62 13.092-13.856 7.926.235 13.973 6.341 13.856 13.856.117 7.574-5.989 13.62-13.856 13.856-7.221-.176-13.269-6.282-13.092-13.856zM276.479 291.477c.117-7.808 6.164-13.914 13.855-13.855 7.457-.059 13.504 6.106 13.856 13.855-.352 7.222-6.4 13.386-13.856 13.093-7.69.293-13.738-5.871-13.855-13.093zM98.938 468.9c-.352-7.338 5.871-13.444 13.21-13.092 7.691-.411 13.738 5.754 13.856 13.092-.118 7.75-6.165 13.797-13.856 13.856-7.339-.059-13.562-6.165-13.21-13.856zM142.736 425.22c0-7.691 6.106-13.797 13.856-13.856 7.221.118 13.445 6.165 13.092 13.856.353 7.397-5.87 13.445-13.092 13.855-7.75-.41-13.856-6.458-13.856-13.855z" style="fill:#fff"/><path d="M330.375 118.81c58.358 14.795 105.15 58.945 123.41 115.953l21.546-6.81c-20.842-64.23-72.918-114.075-138.733-130.69l-6.164 22.193v-.646h-.059z" clip-rule="evenodd" style="fill:#fff;fill-rule:evenodd"/><path d="m342.176 73.779 6.106-22.193c81.549 20.49 146.776 81.96 172.667 161.513l-22.838 7.397C474.744 148.752 415.68 92.684 342.176 73.78z" clip-rule="evenodd" style="fill:#fff;fill-rule:evenodd"/></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0071BC" d="M286.719 281.759h1.407v4.266h5.124v-4.266h1.407v10.412h-1.407v-4.959h-5.124v4.959h-1.407v-10.412"/><path fill="none" stroke="#0071BC" stroke-width=".817" d="M298.604 287.056a8 8 0 1 1-16 0 8 8 0 0 1 16 0z"/></svg>

After

Width:  |  Height:  |  Size: 323 B

1
src/icons/osm/hifi.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g fill="#93278F"><path d="M287.132 297.775a.483.483 0 0 0-.484.484v1.679c0 .266.215.483.484.483h13.796a.483.483 0 0 0 .484-.483v-1.68a.483.483 0 0 0-.484-.483h-13.796zm.318.809h2.01c.192 0 .344.154.344.346v.414a.345.345 0 0 1-.344.346h-2.01a.345.345 0 0 1-.346-.346v-.414c0-.192.157-.346.346-.346zm3.645 0h2.01c.192 0 .344.154.344.346v.414a.345.345 0 0 1-.344.346h-2.01a.345.345 0 0 1-.346-.346v-.414a.342.342 0 0 1 .346-.346zm3.64 0h2.01c.192 0 .344.154.344.346v.414a.345.345 0 0 1-.344.346h-2.01a.345.345 0 0 1-.346-.346v-.414c0-.192.154-.346.346-.346zm3.642 0h2.01c.192 0 .344.154.344.346v.414a.345.345 0 0 1-.343.346h-2.01a.345.345 0 0 1-.347-.346v-.414a.348.348 0 0 1 .346-.346z"/><path d="M288.006 300.115h1.674a.456.456 0 0 1 0 .912h-1.674a.455.455 0 1 1 0-.912zM298.386 300.115h1.674a.455.455 0 1 1 0 .912h-1.674a.455.455 0 1 1 0-.912z"/></g><g fill="#93278F"><path d="M287.132 292.266a.483.483 0 0 0-.484.484v2.637c0 .269.215.484.484.484h13.796a.483.483 0 0 0 .484-.484v-2.637a.483.483 0 0 0-.484-.484h-13.796zm12.082.559a1.369 1.369 0 1 1 0 2.74 1.369 1.369 0 1 1 0-2.74zm-11.591.145h2.01c.192 0 .346.154.346.346v.413a.345.345 0 0 1-.346.346h-2.01a.343.343 0 0 1-.344-.346v-.413a.342.342 0 0 1 .344-.346z"/><path d="M288.006 295.567h1.674a.455.455 0 1 1 0 .912h-1.674a.455.455 0 1 1 0-.912zM298.386 295.567h1.674a.455.455 0 1 1 0 .912h-1.674a.455.455 0 1 1 0-.912z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="14" height="14" version="1.1" viewBox="0 0 3.7042 3.7042" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0 -293.3)">
<path transform="matrix(.26458 0 0 .26458 0 293.3)" d="m7 0a7 7 0 0 0-7 7 7 7 0 0 0 7 7 7 7 0 0 0 7-7 7 7 0 0 0-7-7zm-1 3h2v3h3v2h-3v3h-2v-3h-3v-2h3v-3z" fill="#000000"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 368 B

1
src/icons/osm/hostel.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0071BC" stroke="#0071BC" stroke-width="1.075" stroke-linecap="round" d="m283.376 283.337-.096 14.842"/><path fill="#0071BC" stroke="#0071BC" stroke-width="1.075" d="m283.472 296.596 14.395.096"/><path fill="#0071BC" stroke="#0071BC" stroke-width="1.075" stroke-linecap="round" d="m297.964 297.891.096-11.534"/><path fill="#0071BC" stroke="#0071BC" stroke-width="1.041" d="M289.643 293.844h5.081a.58.58 0 0 1 0 1.158h-5.081a.579.579 0 1 1 0-1.158z"/><path fill="#0071BC" stroke="#0071BC" stroke-width=".069" d="M288.108 292.48c0 .441-.385.799-.861.799s-.862-.357-.862-.799c0-.441.385-.8.861-.8.476.001.862.358.862.8z"/><path fill="#0071BC" stroke="#0071BC" stroke-width=".905" d="M285.652 294.754h2.202c.057 0 .104.047.104.104a.103.103 0 0 1-.104.104h-2.202a.103.103 0 0 1-.103-.104c0-.057.046-.104.103-.104z"/><path fill="#0071BC" stroke="#0071BC" stroke-width="1.075" d="m283.615 289.525 14.396.096"/><path fill="#0071BC" stroke="#0071BC" stroke-width="1.041" d="M289.779 286.811h5.08a.579.579 0 1 1 0 1.158h-5.08a.579.579 0 1 1 0-1.158z"/><path fill="#0071BC" stroke="#0071BC" stroke-width=".069" d="M288.244 285.447c0 .441-.385.799-.861.799s-.861-.357-.862-.799c0-.441.385-.799.861-.799s.862.357.862.799z"/><path fill="#0071BC" stroke="#0071BC" stroke-width=".905" d="M285.789 287.721h2.202a.104.104 0 1 1 0 .208h-2.202a.104.104 0 0 1-.104-.104.105.105 0 0 1 .104-.104z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

1
src/icons/osm/hotel2.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0092DA" stroke="#0092DA" stroke-width="1.161" stroke-linecap="round" d="m282.792 301.203-.104 8.085"/><path fill="#7398CF" stroke="#0092DA" stroke-width="1.161" d="m282.897 306.281 15.545.104"/><path fill="#0092DA" stroke="#0092DA" stroke-width="1.161" stroke-linecap="round" d="m298.547 308.979.105-5.287"/><path fill="#0092DA" stroke="#0092DA" stroke-width="1.335" d="M289.531 303.328h6.737c.4 0 .725.325.725.727a.725.725 0 0 1-.725.726h-6.737a.726.726 0 0 1-.725-.726.724.724 0 0 1 .725-.727z"/><path fill="#0092DA" stroke="#0092DA" stroke-width=".074" d="M287.63 301.394c0 .554-.506 1.001-1.13 1.002-.625 0-1.13-.447-1.13-1.001v-.001c0-.553.505-1.001 1.13-1.001.623-.002 1.129.447 1.13 1.001z"/><path fill="#0092DA" stroke="#0092DA" stroke-width="1.161" d="M284.323 304.469h2.902c.071 0 .131.059.131.129a.13.13 0 0 1-.131.131h-2.902a.13.13 0 0 1-.13-.131.128.128 0 0 1 .13-.129z"/></svg>

After

Width:  |  Height:  |  Size: 990 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#603813" d="M291.904 278.331c0-.435.141-.791.422-1.068s.644-.416 1.086-.416c.475 0 .869.146 1.183.44.314.293.471.625.471.996 0 .273-.062.547-.187.82a1.479 1.479 0 0 1-.592.658c-.27.165-.545.248-.826.248-.387 0-.742-.165-1.068-.495a1.62 1.62 0 0 1-.489-1.183zm-1.69 14.398-.024-.785 1.363-.181c.201-.057.34-.139.417-.247.076-.109.114-.353.114-.73v-.133c0-.097.006-.271.018-.525.013-.253.019-.477.019-.67 0-.153-.012-.446-.036-.881l.012-.604-.012-.567.024-1.967c0-.25-.024-.507-.073-.772-.088-.121-.249-.225-.482-.313-.233-.089-.64-.153-1.219-.193v-.676c.829-.048 1.557-.221 2.185-.519.426-.193.889-.535 1.388-1.025h.809c.032.998.048 2.293.048 3.886l-.084 4.924c0 .338.016.644.048.917.25.089.656.177 1.219.266.218.032.391.072.52.121l-.013.663a15.17 15.17 0 0 1-.482.013c-.121 0-.306-.009-.555-.024a70.886 70.886 0 0 0-3.295-.061c-.395 0-.776.015-1.146.042-.373.026-.626.041-.763.041z"/></svg>

After

Width:  |  Height:  |  Size: 988 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="none" stroke="#93278F" stroke-width="1.812" stroke-linecap="round" stroke-linejoin="round" d="M299.145 274.652a4.03 4.03 0 1 1-8.06 0 4.03 4.03 0 1 1 8.06 0z"/><g opacity=".4" fill="#FFF" stroke="#FFF" stroke-width=".348"><path d="m293.369 270.787-1.696-3.147 2.117-1.387h2.03l.183 4.217-2.634.317z" stroke-width=".48559919999999995"/><path d="m296.875 270.787 1.694-3.147-2.116-1.387h-2.366l.151 4.217 2.637.317z" stroke-width=".48559919999999995"/></g><path opacity=".6" fill="none" stroke="#93278F" stroke-width=".486" d="m293.789 266.254-2.115 1.387 1.694 3.146 1.754-.211 1.754.211 1.694-3.146-2.116-1.387h-2.665z"/><path opacity=".6" fill="none" stroke="#93278F" stroke-width=".486" stroke-linejoin="bevel" d="m293.789 267.989-2.115-.348 1.694 3.146 1.754-.211 1.754.211 1.694-3.146-2.116.348h-2.665z"/><path opacity=".6" fill="none" stroke="#93278F" stroke-width=".486" d="m293.756 267.988-.388 2.799 1.754-.211 1.754.211-.3-2.784-.209-1.749h-2.452l-.159 1.734z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

1
src/icons/osm/kiosk.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580" id="svg2"><defs id="defs4"><style type="text/css" id="style6"></style></defs><g id="g1327"><path d="M66.275 1.768c-41.335 0-64.571 21.371-64.571 65.036v450.123c0 40.844 20.894 62.229 62.192 62.229H515.92c41.307 0 62.229-20.316 62.229-62.229V66.804c0-42.601-20.922-65.036-63.522-65.036-.003 0-448.494-.143-448.352 0z" style="fill:#111;stroke:#eee;stroke-width:3.40799999" id="path1329"/></g><g id="g19987" transform="translate(-4)"><path style="fill:#fff;fill-opacity:1;fill-rule:evenodd;stroke:#fff;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="M159.313 529.375c96.357 33.345 204.6 30.744 297.187 0V26.031H159.312v503.344zm31.718-486.5c74.657.804 163.545-.69 238.063.813 8.678 1.39 12.282 10.577 12.094 18.437-.802 75.533.794 151.134-.665 226.687 2.032 8.428-12.512 15.965-20.492 17.47-3.622.944-7.398 1.123-11.125.906 1.927 20.17-1.941 44.588-20.875 55.78-22.242 13.348-56.8 1.837-62.937-24.405-1.86-10.477-2.578-21.139-2.656-31.782h-27.532c1.533 19.554-1.262 42.989-18.844 54.907-22.133 15.217-58.554 3.972-64.968-23.032-2.035-10.456-2.286-21.134-2.719-31.75-9.95 1.351-30.066-.88-32.469-12.437-2.381-12.778.59-25.814-.7-38.688.432-68.014-1.297-136.09 1.075-204.062 2.33-5.867 8.734-8.788 14.75-8.844z" id="rect3855"/><path id="path8791" d="M309.844 72.344c-11.3 0-21.13 4.092-29.5 12.25-8.37 8.159-12.562 18.073-12.563 29.781 0 11.721 4.194 21.686 12.563 29.844 8.37 8.159 18.2 12.219 29.5 12.219.416 0 .838-.022 1.25-.032.417.012.828.032 1.25.031 11.299 0 21.13-4.06 29.5-12.218 8.369-8.158 12.53-18.123 12.531-29.844 0-11.708-4.162-21.622-12.531-29.781-8.37-8.158-18.201-12.25-29.5-12.25-.422 0-.834.02-1.25.031-.412-.01-.834-.031-1.25-.031zm-32 93.5c-2.556 0-4.865.286-6.938.844a35.853 35.853 0 0 0-4.094-.157c-9.374.227-18.59 4.31-25.062 11.094-6.472 6.785-10.122 16.188-9.906 25.563l.719 80.187h.156v42.063a19.002 19.002 0 1 0 38 0v-42.063h76v42.063a19.002 19.002 0 1 0 38 0v-42.063h.687l-.719-80.844c.033-9.045-3.53-18.06-9.718-24.656-6.19-6.597-14.94-10.706-23.969-11.25-1.995-.505-4.192-.781-6.625-.781h-66.531z" style="font-size:40px;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:.75;fill:#fff;fill-opacity:1;stroke:#fff;stroke-width:1.64119303;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;font-family:NPSPICT3;-inkscape-font-specification:NPSPICT3"/><path id="path19731" d="M252.313 224.125c-17.28-.151-29.198 19.935-24.438 35.781 1.152 25.82-3.718 52.372 3.656 77.563 11.054 17.825 42.03 9.103 44.719-10.813-3.137-30.599 4.071-62.112-4.313-92.156-3.949-6.785-11.91-10.684-19.625-10.375z" style="fill:none;stroke:#bd3d3d;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"/></g></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#FFF" stroke="#93278F" stroke-width=".629" stroke-linecap="round" stroke-linejoin="round" d="M282.151 286.066v13.648h12.354v-13.648h-12.354zm6.107 3.981a3.002 3.002 0 0 1 0 6.003c-1.656 0-3.002-1.345-3.002-3.001s1.346-3.002 3.002-3.002z"/><path fill="none" stroke="#93278F" stroke-width=".629" stroke-linecap="round" stroke-linejoin="round" d="M282.151 286.066v13.648h12.354v-13.648h-12.354zm6.107 3.981a3.002 3.002 0 0 1 0 6.003c-1.656 0-3.002-1.345-3.002-3.001s1.346-3.002 3.002-3.002z"/><g fill="none" stroke="#93278F" stroke-linecap="round"><path stroke-width=".628662" stroke-linejoin="round" d="M291.259 293.048a3 3 0 1 1-6.002 0 3 3 0 1 1 6.002 0z"/><path stroke-width=".5867512000000001" d="M285.388 291.549v3.136"/><path stroke-width="1.25103738" stroke-linejoin="round" d="M291.024 293.117h-.626"/></g><path fill="none" stroke="#93278F" stroke-width=".75" stroke-linecap="round" stroke-linejoin="round" d="M291.46 287.646c0 .153-.124.278-.277.278a.278.278 0 0 1 0-.556c.153 0 .277.125.277.278h0zM293.179 287.646a.278.278 0 1 1-.556 0 .278.278 0 0 1 .556 0h0zM289.742 287.646a.279.279 0 0 1-.556 0 .279.279 0 0 1 .556 0h0z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" xml:space="preserve"><g fill="none" stroke="#FFF" stroke-width="2"><path d="m94.3 129.455 14.142-14.143M108.442 129.455 94.3 115.312"/></g><g fill="none" stroke="#080708" stroke-width="2" stroke-dasharray="3,2.7"><path d="m94.3 129.455 14.142-14.142M108.442 129.455 94.3 115.313"/></g></svg>

After

Width:  |  Height:  |  Size: 356 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#754C24" stroke="#754C24" stroke-width=".33" stroke-linecap="round" stroke-linejoin="round" d="m283.807 284.251 7.54 8.562 7.222-4.153-7.35-8.499-7.412 4.09zM283.401 285.198l7.413 8.436.031 3.195-7.477-8.452.033-3.179z"/><path opacity=".75" fill="#754C24" stroke="#754C24" stroke-width=".544" stroke-linecap="round" stroke-linejoin="round" d="m298.511 289.77-6.807 3.988-.005.105 6.801-3.985.011-.108zM298.511 291.09l-6.807 3.988-.005.105 6.801-3.985.011-.108zM298.511 292.41l-6.807 3.988-.005.104 6.801-3.985.011-.107z"/></svg>

After

Width:  |  Height:  |  Size: 626 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="none" stroke="#000" stroke-width="1.367" stroke-linecap="round" d="m289.936 291.545 9.238-2.06"/><path fill="#666" d="M288.861 288.616c-.116 0-.231.048-.313.13s-.13.197-.13.313v7.664a.447.447 0 0 0 .443.442h1.121a.447.447 0 0 0 .443-.442v-3.861c-.561.172-1.233.02-1.595-.457-.549-.656-.269-1.816.541-2.123l1.054-.243v-.979c0-.116-.048-.231-.13-.313s-.197-.13-.313-.13h-1.121z"/></svg>

After

Width:  |  Height:  |  Size: 482 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" xml:space="preserve"><circle fill="#999" cx="199.501" cy="199.501" r="4.5"/></svg>

After

Width:  |  Height:  |  Size: 147 B

1
src/icons/osm/marina.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="580" height="580"><path d="M66.275 1.768c-41.335 0-64.571 21.371-64.571 65.036v450.123c0 40.844 20.895 62.229 62.192 62.229H515.92c41.307 0 62.229-20.315 62.229-62.229V66.804c0-42.601-20.922-65.036-63.521-65.036-.004 0-448.495-.143-448.353 0z" style="fill:#111;stroke:#eee;stroke-width:3.40799999"/><path transform="matrix(14.68584 0 0 14.68584 565.766 1146.064)" style="font-size:40px;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#fff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:NPSPICT3;-inkscape-font-specification:NPSPICT3" d="M-19.063-67.788c-.48 0-.9-.18-1.26-.54-.36-.36-.54-.794-.54-1.3 0-.48.18-.9.54-1.26.36-.36.78-.54 1.26-.54.507 0 .94.18 1.3.54.36.36.54.78.54 1.26 0 .506-.18.94-.54 1.3-.36.36-.793.54-1.3.54zm13.68 9.8c-.106-.64-.506-.96-1.199-.96-.32 0-.614.133-.88.4l-4.441 4.16c-.32.266-.48.586-.48.96 0 .64.294 1.053.88 1.24l1.12.36a9.493 9.493 0 0 1-2.68 3.9 8.972 8.972 0 0 1-4.24 2.1v-19.72c1.787-.774 2.68-2.134 2.68-4.08 0-1.2-.433-2.233-1.3-3.1s-1.913-1.3-3.14-1.3c-1.2 0-2.233.433-3.1 1.3-.866.867-1.299 1.9-1.299 3.1 0 1.946.907 3.306 2.72 4.08v19.76a9.5 9.5 0 0 1-4.36-2.1 9.159 9.159 0 0 1-2.76-3.94l1.12-.36c.586-.187.879-.6.879-1.24 0-.347-.147-.667-.44-.96l-4.48-4.16c-.266-.267-.56-.4-.88-.4-.693 0-1.093.32-1.2.96l-.959 6.04c-.027.133-.04.226-.04.28 0 .853.44 1.28 1.32 1.28.133 0 .253-.013.36-.04l1.04-.36c.853 2.56 2.38 4.653 4.58 6.28 2.2 1.626 4.686 2.44 7.46 2.44 2.746 0 5.24-.827 7.48-2.48 2.16-1.6 3.666-3.68 4.52-6.24l1.04.36c.107.027.227.04.36.04.88 0 1.32-.427 1.32-1.28 0-.054-.014-.147-.04-.28l-.96-6.04z"/></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g fill="#93278F" stroke="#93278F" stroke-width=".145"><path d="M285.627 278.368a.644.644 0 0 0-.74.491l-2.885 12.614a.645.645 0 0 0 .486.774l5.062 1.157a.643.643 0 0 0 .773-.485l2.885-12.614a.643.643 0 0 0-.485-.773l-5.062-1.158-.034-.006zm.363.904 4.045.925a.552.552 0 0 1 .416.662l-1.232 5.386a.552.552 0 0 1-.663.415l-4.045-.925a.55.55 0 0 1-.414-.663l1.232-5.387a.55.55 0 0 1 .66-.413zm-1.882 7.286.707.162c.192.044.311.233.267.424l-.153.67a.354.354 0 0 1-.424.266l-.71-.163a.353.353 0 0 1-.266-.424l.153-.67a.355.355 0 0 1 .426-.265zm1.858.425.708.162c.192.044.31.233.266.424l-.153.67a.352.352 0 0 1-.424.266l-.708-.162a.353.353 0 0 1-.267-.424l.153-.67a.353.353 0 0 1 .425-.266zm1.859.426.71.162c.191.044.31.232.266.424l-.154.67a.352.352 0 0 1-.423.265l-.71-.162a.352.352 0 0 1-.266-.424l.153-.67a.352.352 0 0 1 .424-.265zm-4.144 1.009.71.162c.19.044.31.233.266.425l-.153.668a.354.354 0 0 1-.425.267l-.709-.162a.354.354 0 0 1-.267-.425l.153-.669a.357.357 0 0 1 .425-.266zm1.86.425.709.162c.191.044.31.233.265.425l-.152.668a.354.354 0 0 1-.424.267l-.708-.161a.354.354 0 0 1-.267-.425l.153-.669a.354.354 0 0 1 .424-.267zm1.858.426.71.162c.192.044.31.234.266.425l-.153.668a.355.355 0 0 1-.424.268l-.71-.162a.354.354 0 0 1-.265-.426l.153-.669a.35.35 0 0 1 .423-.266zm-4.144 1.01.71.162c.19.044.31.233.266.424l-.153.67a.355.355 0 0 1-.425.266l-.709-.162a.353.353 0 0 1-.267-.424l.154-.67a.353.353 0 0 1 .424-.266zm1.86.427.708.16c.191.044.31.233.266.424l-.153.67a.352.352 0 0 1-.424.266l-.709-.162a.354.354 0 0 1-.267-.424l.153-.669a.354.354 0 0 1 .426-.265zm1.858.424.71.162c.191.044.31.232.265.424l-.153.668a.352.352 0 0 1-.422.266l-.71-.163a.35.35 0 0 1-.266-.423l.153-.67a.352.352 0 0 1 .423-.264z" stroke-width=".14999815"/><path d="m290.176 277.795.732.169c.115.026.188.14.161.255l-.315 1.378a.214.214 0 0 1-.255.16l-.732-.167a.215.215 0 0 1-.161-.256l.315-1.378a.212.212 0 0 1 .255-.16z" stroke-width=".14999815"/><path opacity=".2" d="m283.318 285.719-1.316 5.754a.645.645 0 0 0 .486.774l5.062 1.157a.643.643 0 0 0 .773-.485l1.316-5.755-6.321-1.445zM285.627 278.368a.644.644 0 0 0-.74.491l-1.544 6.752 6.32 1.446 1.545-6.752a.643.643 0 0 0-.485-.773l-5.062-1.158-.034-.006z" stroke-width=".14999815"/></g></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

1
src/icons/osm/motel.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g stroke="#0071BC"><path fill="#FFF" stroke-width=".8326089999999999" stroke-linecap="round" d="m284.85 287.037-.075 5.799"/><path fill="#FFF" stroke-width=".8326089999999999" d="m284.924 290.68 11.148.074"/><path fill="#FFF" stroke-width=".8326089999999999" stroke-linecap="round" d="m296.147 292.612.075-3.791"/><path fill="#FFF" stroke-width=".9573067199999999" d="M289.68 288.56h4.832a.521.521 0 0 1 0 1.04h-4.831a.52.52 0 0 1 0-1.04z"/><path fill="#0071BC" stroke-width=".053441880000000004" d="M288.317 287.173c0 .397-.363.718-.811.718-.448 0-.81-.321-.81-.718s.362-.717.81-.717c.448 0 .81.32.81.717z"/><path fill="#FFF" stroke-width=".8326089999999999" d="M285.945 289.379h2.082c.051 0 .093.041.093.092a.093.093 0 0 1-.093.093h-2.082a.093.093 0 0 1-.093-.093c.001-.05.042-.092.093-.092z"/></g><path fill="#0071BC" d="M288.551 293.781c-.57 0-.873.311-1.013.676l-.742 1.915c-.294.038-.815.384-.815 1.037v2.436h.722v.779c0 .958 1.356.947 1.356 0v-.779h4.879v.779c0 .947 1.356.958 1.356 0v-.779h.721v-2.436c0-.653-.52-.999-.814-1.037l-.743-1.915c-.141-.365-.442-.676-1.013-.676h-3.894zm-.009.697h3.913c.245.002.35.155.418.367l.561 1.507h-5.869l.56-1.507c.068-.212.173-.366.417-.367zm-1.139 2.606c.346 0 .626.288.626.646 0 .355-.28.646-.626.646s-.626-.289-.626-.646c0-.357.28-.646.626-.646zm6.193 0c.346 0 .625.288.625.646 0 .355-.279.646-.625.646s-.627-.289-.627-.646c0-.357.281-.646.627-.646z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g fill="#93278F"><path d="M292.212 281.378a1.694 1.694 0 0 0-1.637-1.267 1.688 1.688 0 0 0-1.634 2.13h.678c.05.118.105.184.105.184a1.137 1.137 0 0 0 2.067-.65c0-.143.035-.274-.023-.397h.444zM292.166 291.472c-.178.18-.425.32-.7.32v-3.68l2.546-.732.637 1.256-2.483 2.836z"/><path d="M290.028 283.057a.915.915 0 0 0-1.399.04l-2.02 3.086a.898.898 0 0 0-.128.47c0 .319.16.596.404.76l2.71 1.503v2.56a.656.656 0 1 0 1.31 0v-3.197s.087-.51-.491-.788l-1.69-.885 1.231-1.88.654 1.026c.132.208.307.288.47.285l1.677-.006c.684 0 .684-.889 0-.885h-1.36l-1.368-2.089zM297.456 287.25c.027.029.041.06.041.106a.15.15 0 0 1-.148.148c-.021 0-.035 0-.052-.006-.29-.124-.474-.201-.811-.201-.222 0-.5.077-.82.335l-.294-.583c.369-.11.671-.208.986-.208.504-.002.768.103 1.098.41z"/><path d="m286.186 287.7 2.844 1.568.006.63-3.25-1.79c-.234-.12-.55-.19-.774-.19-.334 0-.52.078-.81.201-.018.006-.033.006-.053.006a.148.148 0 0 1-.106-.253c.328-.308.666-.411 1.167-.411.26.001.574.032.976.239zM286.45 293.47a1.678 1.678 0 1 0 0-3.357 1.678 1.678 0 0 0 0 3.356zm-2.42-1.679a2.422 2.422 0 0 1 4.843 0 2.422 2.422 0 0 1-4.843 0zM296.46 293.47a1.68 1.68 0 1 0-.001-3.359 1.68 1.68 0 0 0 .002 3.358zm-2.42-1.679a2.422 2.422 0 1 1 4.843 0 2.422 2.422 0 0 1-4.843 0zM295.926 289.023l-1.177-2.352a.917.917 0 0 0-.8-.475h-.769c-.15 0-.27.123-.27.274 0 .152.12.272.27.272l.769-.003c.13 0 .272.088.328.214l1.107 2.258.542-.188z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" xml:space="preserve"><path fill="#8C6239" d="m200 197.766-3 5.235h6.001z"/><path fill="#8C6239" d="m203.562 197.766-3 5.235h6z"/></svg>

After

Width:  |  Height:  |  Size: 200 B

1
src/icons/osm/museum.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#603813" stroke="#603813" stroke-width=".03" d="m282.507 271.056 16.034-.027-.873-1.512h-14.23l-.931 1.539z"/><path fill="#FFF" stroke="#603813" stroke-width="1.455" d="M284.852 269.696v-6.589M288.53 269.696v-6.589M292.459 269.696v-6.589M296.138 269.696v-6.589"/><path fill="#603813" stroke="#603813" stroke-width=".03" d="M282.545 261.41h16.003l-7.927-2.688-8.076 2.688z"/><path fill="#FFF" stroke="#603813" stroke-width=".886" stroke-linecap="square" d="M283.098 261.412h14.892v1.322h-14.892z"/></svg>

After

Width:  |  Height:  |  Size: 601 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><g stroke="#93278F" stroke-linecap="round" stroke-linejoin="round"><path fill="#FFF" stroke-width=".371577" d="M267.067 282.32a1.939 1.939 0 1 1-3.878 0 1.939 1.939 0 0 1 3.878 0z"/><path fill="#93278F" stroke-width=".743154" d="M266.908 273.43a.374.374 0 0 0-.367.377v7.188a1.937 1.937 0 1 0-1.413 3.264c.976 0 1.978-.621 2.142-1.81.005-.005.017-.2.015-.352v-8.29a.378.378 0 0 0-.11-.267.367.367 0 0 0-.267-.11zM273.416 270.807a.373.373 0 0 0-.367.377v7.187a1.938 1.938 0 1 0-1.413 3.264c.976 0 1.978-.622 2.141-1.81.005-.004.018-.2.015-.351v-8.29a.372.372 0 0 0-.377-.377z"/><path fill="none" stroke-width="1.486308" d="m266.981 273.722 6.357-2.52"/></g></svg>

After

Width:  |  Height:  |  Size: 748 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 65 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#93278F" stroke="#93278F" stroke-width=".03" d="M289.094 407.144c.729-.372 1.09-.819 1.499-1.861.226-.577.268-.632.553-.73.169-.058.49-.228.714-.377.224-.148.604-.391.844-.538.24-.146.687-.458.992-.691.555-.426.555.774.623.977.113.341.342.258.48-.175.328-1.024.161-2.299-.903-1.605-2.042 1.332-2.732 1.506-3.902.983-1.861-.831-2.869-.966-3.954-.527-.344.139-.479.156-.716.095a15.51 15.51 0 0 0-.796-.173c-.399-.076-.595-.17-.931-.444-.521-.425-1.329-.816-1.704-.827-.877-.025-.59-.275.865-.754.984-.323 1.959-.821 3.089.079.471.375.516.384.633.127.139-.305.054-.393-.84-.87-1.281-.685-2.147-.095-3.848.473-2.441.814-3.12 1.325-2.551 1.918.156.163.248.4.358.919.513 2.42 2.554 3.61 3.787 2.21.34-.387.97-1.523.97-1.75 0-.114.048-.127.298-.081.399.073.469.154.34.396-.093.173-.08.268.109.784.596 1.634 1.492 2.414 2.842 2.556.425.07.783.068 1.149-.114zm-1.695-.456c-1.152-.408-1.875-1.967-1.462-3.153.441-1.271 3.561-.448 3.947 1.04.384 1.483-.983 2.646-2.485 2.113zm-5.866-1.448c-1.273-.578-1.885-2.971-.869-3.396 1.266-.528 2.618.501 2.618 1.994.001 1.316-.701 1.879-1.749 1.402z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

38
src/icons/osm/outdoor.svg Normal file
View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg2"
viewBox="0 0 14 14"
height="14"
width="14"
version="1.1">
<defs
id="defs3053" />
<metadata
id="metadata8">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
style="fill:none;stroke:none;visibility:hidden"
id="canvas"
y="0"
x="0"
height="14"
width="14" />
<path
id="path4166"
d="M 5.5 1.015625 A 1.5 1.5 0 0 0 4 2.515625 A 1.5 1.5 0 0 0 5.5 4.015625 A 1.5 1.5 0 0 0 7 2.515625 A 1.5 1.5 0 0 0 5.5 1.015625 z M 10 2 L 8 3 L 11 9 L 13 8 L 10 2 z M 8 4 L 6 5 L 6.2949219 6.4707031 L 4 8 L 1 7 L 1 8 L 4 10 L 6.6464844 8.234375 L 7 10 L 10 9 L 8 4 z M 1 9 L 1 14 L 2 14 L 2 9 L 1 9 z M 10 10 L 7 11 L 5 14 L 6.8339844 14 L 8.3652344 12 L 9 14 L 11 14 L 10 10 z "
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0071BC" stroke="#0071BC" stroke-width=".5" d="M500.742 278.013v-12.462h4.701c.829 0 1.459.04 1.896.119.611.102 1.124.296 1.537.583.414.286.748.687 1 1.202a3.85 3.85 0 0 1 .378 1.7c0 1.061-.337 1.957-1.012 2.691-.674.734-1.895 1.101-3.656 1.101h-3.196v5.066h-1.648zm1.651-6.537h3.222c1.064 0 1.821-.198 2.271-.595.445-.397.669-.955.669-1.675 0-.521-.131-.968-.393-1.338a1.846 1.846 0 0 0-1.042-.735c-.278-.074-.79-.11-1.538-.11h-3.188v4.453h-.001z"/></svg>

After

Width:  |  Height:  |  Size: 554 B

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="none" stroke="#0071BC" stroke-width=".772" d="M454.277 291.842a1.903 1.903 0 1 0 3.805 0 1.903 1.903 0 0 0-3.805 0zM462.434 291.805a1.903 1.903 0 0 0 3.805 0 1.903 1.903 0 0 0-3.805 0z"/><path fill="none" stroke="#0071BC" stroke-width=".507" stroke-linejoin="round" d="m462.829 288.566-4.895.025-1.729 3.214h3.312l3.46-2.349"/><path fill="#0071BC" d="M462.641 286.641c.268 0 .469-.005.675.309a.542.542 0 0 1 .063.36.669.669 0 0 1-.213.372c-.135.111-.262.103-.241.203.026.129.106.308.193.599.089.295.192.656.296 1.012.104.355.204.706.283.979.039.136.073.253.102.341.025.086.05.152.047.147.084.146.097.242.236.365.156.137.282.239.326.271.112.082.166.254.104.34-.074.117-.229.135-.342.1a1.346 1.346 0 0 1-.474-.256l-.002-.004-.003-.002c-.273-.234-.374-.519-.386-.535l-.015-.021-.011-.023c-.023-.059-.037-.11-.064-.202-.029-.093-.063-.21-.104-.349-.082-.275-.183-.625-.285-.981-.103-.355-.206-.714-.294-1.005-.087-.291-.143-.531-.163-.582a.643.643 0 0 1-.041-.392c.035-.134.136-.243.227-.268.207-.058.152-.207.047-.207l-.889-.002-.002-.567c.004-.002.581-.002.93-.002z"/><path fill="#FFF" stroke="#0071BC" stroke-width=".607" d="m459.454 291.704-1.679-4.108"/><path fill="#FFF" stroke="#0071BC" stroke-width=".222" stroke-linecap="round" d="m460.03 290.654-1.014 2.359"/><path fill="#FFF" stroke="#0071BC" stroke-width=".93" d="M458.962 291.812c0 .262.241.474.536.474.297 0 .537-.212.537-.474 0-.264-.24-.475-.537-.475-.295.001-.536.212-.536.475z"/><path fill="#FFF" stroke="#0071BC" stroke-width=".31" stroke-linecap="round" d="m460.481 290.656-.896.008M459.473 292.98l-.895.009"/><path fill="#0071BC" d="M456.954 287.229h2.105c.078 0 .181.14.078.232-.108.104-1.096.318-1.096.318s-.271.075-.416.057c-.142-.018-.641-.06-.671-.607z"/><path fill="#0071BC" stroke="#0071BC" stroke-width=".5" d="M451.646 290.442v-10.985h4.145c.729 0 1.286.035 1.67.105.54.09.992.261 1.356.514.363.251.656.605.881 1.06.222.455.334.954.334 1.499 0 .935-.297 1.726-.893 2.372-.595.646-1.67.97-3.223.97H453.1v4.466l-1.454-.001zm1.454-5.763h2.843c.938 0 1.604-.174 2-.525.394-.35.592-.842.592-1.477 0-.459-.116-.853-.351-1.18a1.609 1.609 0 0 0-.918-.648c-.243-.064-.695-.097-1.354-.097H453.1v3.927z"/></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0071BC" d="M260.521 308.476c-.566 0-.867.31-1.005.671l-.736 1.9c-.292.037-.809.38-.809 1.028v2.417h.716v.772c0 .951 1.346.939 1.346 0v-.772H264.874v.772c0 .939 1.346.951 1.346 0v-.772h.716v-2.417c0-.648-.518-.991-.809-1.028l-.737-1.9c-.139-.361-.439-.671-1.005-.671h-3.864zm-.008.692h3.881c.243.002.347.153.416.364l.555 1.495h-5.823l.555-1.495c.069-.211.173-.362.416-.364zm-1.131 2.587c.343 0 .621.286.621.64s-.278.642-.621.642-.622-.288-.622-.642.279-.64.622-.64zm6.144 0c.343 0 .621.286.621.64s-.278.642-.621.642c-.344 0-.623-.288-.623-.642s.28-.64.623-.64zM252.941 311.771v-12.206h4.604c.811 0 1.43.039 1.857.117.6.1 1.102.29 1.507.57s.731.673.979 1.178.371 1.061.371 1.665c0 1.038-.331 1.917-.991 2.636-.66.719-1.854 1.078-3.58 1.078h-3.13v4.962h-1.617zm1.615-6.402h3.155c1.043 0 1.785-.194 2.223-.583s.658-.936.658-1.641c0-.511-.129-.947-.387-1.311a1.81 1.81 0 0 0-1.02-.721c-.272-.072-.774-.108-1.507-.108h-3.122v4.364z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0071BC" stroke="#0071BC" stroke-width=".033" d="M286.794 308.476c-.566 0-.867.31-1.005.671l-.736 1.9c-.292.037-.809.38-.809 1.028v2.417h.717v.772c0 .951 1.345.939 1.345 0v-.772H291.147v.772c0 .939 1.346.951 1.346 0v-.772h.717v-2.417c0-.648-.518-.991-.81-1.028l-.736-1.9c-.139-.361-.438-.671-1.005-.671H286.794zm-.008.692h3.881c.242.002.347.153.416.364l.555 1.495h-5.823l.555-1.495c.069-.211.173-.362.416-.364zm-1.131 2.587c.343 0 .621.286.621.64s-.278.642-.621.642-.622-.288-.622-.642.279-.64.622-.64zm6.144 0c.344 0 .622.286.622.64s-.278.642-.622.642c-.343 0-.622-.288-.622-.642s.279-.64.622-.64zM279.214 311.771v-12.206h4.604c.811 0 1.43.039 1.857.117.6.1 1.102.29 1.507.57s.731.673.979 1.178.371 1.061.371 1.665c0 1.038-.331 1.917-.991 2.636-.66.719-1.854 1.078-3.58 1.078h-3.13v4.962h-1.617zm1.615-6.402h3.155c1.044 0 1.785-.194 2.223-.583s.658-.936.658-1.641c0-.511-.129-.947-.387-1.311a1.81 1.81 0 0 0-1.02-.721c-.272-.072-.774-.108-1.507-.108h-3.122v4.364z"/><path fill="#0071BC" d="M295.003 307.055c-.358.242-.97.474-1.721.474-.936 0-1.779-.358-2.345-1.028-.439-.484-.728-1.154-.832-1.986h-.716v-.577h.658v-.174c0-.173.012-.347.023-.508h-.681v-.578h.762c.139-.808.473-1.478.947-1.951.578-.612 1.34-.959 2.275-.959.693 0 1.225.196 1.548.369l-.23.763a2.702 2.702 0 0 0-1.294-.323c-.624 0-1.144.22-1.536.624-.335.346-.566.866-.682 1.478h3.223v.578h-3.326c-.023.15-.023.312-.023.485v.196h3.35v.577h-3.269c.092.67.312 1.167.635 1.513.428.462 1.005.67 1.629.67.612 0 1.144-.219 1.409-.381l.196.738z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="580" height="580" xml:space="preserve"><path fill="#0071BC" stroke="#FFF" stroke-width=".03" d="M252.323 324.449c-.569-.13-3.549-.02-4.41-.02-.027-1.874-.032-3.746-.049-5.62-.538-.564-.256-1.582.489-1.801.737-.305 1.648.381 1.529 1.183.032.637-.705.792-.955 1.14-.018.742-.032 1.484.012 2.225 1.004.079 2.022.021 3.031.035v.978h-2.966c-.245.562 0 1.029-.056.977 1.116.005 2.948.003 4.061.003.641 1.317 1.257 2.649 1.903 3.961.681-.082 1.173-.466 1.431-.483.284-.024.29.878.258.85-.607.218-1.561.692-2.173.898-.153-.251-1.53-3.148-2.105-4.326zm-3.455 5.616c-1.333-.149-2.264-.546-2.975-1.186-1.017-.884-1.604-2.252-1.449-3.607.078-1.533 1.101-2.921 2.457-3.597.214.203.071.715.109 1.053.056.293-.333.375-.476.579-1.007.966-1.228 2.612-.593 3.84.675 1.396 2.379 2.277 3.899 1.847 1.139-.286 2.043-1.149 2.643-2.124.251.201.787 1.052.243 1.43-.913 1.146-2.378 1.869-3.858 1.765z" transform="matrix(.6625 0 0 .6408 136.388 93.963)"/><path fill="#0071BC" stroke="#0071BC" stroke-width=".5" d="M291.676 301.884v-10.985h4.143c.729 0 1.287.035 1.671.105.541.09.992.262 1.356.514.363.252.657.605.881 1.061.224.454.332.956.332 1.499 0 .935-.297 1.726-.891 2.371-.594.647-1.668.971-3.221.971h-2.818v4.466l-1.453-.002zm1.453-5.762h2.84c.939 0 1.606-.175 2.002-.524s.592-.842.592-1.477c0-.459-.116-.852-.35-1.182a1.626 1.626 0 0 0-.918-.648c-.244-.064-.695-.096-1.357-.096h-2.809v3.927z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

Some files were not shown because too many files have changed in this diff Show More