@abi-software/flatmapvuer 1.1.3 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -201
- package/README.md +120 -120
- package/cypress.config.js +23 -23
- package/dist/flatmapvuer.js +43580 -38546
- package/dist/flatmapvuer.umd.cjs +189 -181
- package/dist/index.html +17 -17
- package/dist/style.css +1 -1
- package/package.json +95 -95
- package/public/index.html +17 -17
- package/reporter-config.json +9 -9
- package/src/App.vue +379 -379
- package/src/assets/_variables.scss +43 -43
- package/src/assets/styles.scss +5 -5
- package/src/components/AnnotationTool.vue +501 -501
- package/src/components/ConnectionDialog.vue +134 -134
- package/src/components/DrawTool.vue +502 -502
- package/src/components/EventBus.js +3 -3
- package/src/components/ExternalResourceCard.vue +109 -109
- package/src/components/FlatmapVuer.vue +3515 -3455
- package/src/components/HelpModeDialog.vue +360 -360
- package/src/components/MultiFlatmapVuer.vue +814 -814
- package/src/components/ProvenancePopup.vue +530 -530
- package/src/components/SelectionsGroup.vue +363 -363
- package/src/components/Tooltip.vue +50 -50
- package/src/components/TreeControls.vue +236 -236
- package/src/components/index.js +8 -8
- package/src/components/legends/DynamicLegends.vue +106 -106
- package/src/components/legends/SvgLegends.vue +112 -112
- package/src/icons/flatmap-marker.js +9 -1
- package/src/icons/fonts/mapicon-species.svg +14 -14
- package/src/icons/fonts/mapicon-species.ttf +0 -0
- package/src/icons/fonts/mapicon-species.woff +0 -0
- package/src/icons/mapicon-species-style.css +42 -42
- package/src/icons/yellowstar.js +5 -5
- package/src/legends/legend.svg +25 -25
- package/src/main.js +19 -19
- package/src/services/flatmapQueries.js +475 -475
- package/src/store/index.js +23 -23
- package/vite.config.js +73 -73
- package/vite.static-build.js +12 -12
- package/vuese-generator.js +64 -64
|
@@ -1,106 +1,106 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div>
|
|
3
|
-
<el-row>
|
|
4
|
-
<el-col :span="12">
|
|
5
|
-
<div class="title-display-text">{{ title }}</div>
|
|
6
|
-
</el-col>
|
|
7
|
-
</el-row>
|
|
8
|
-
<div class="legends-group">
|
|
9
|
-
<el-row
|
|
10
|
-
v-for="item in lists"
|
|
11
|
-
:key="item[identifierKey]"
|
|
12
|
-
:label="item[identifierKey]"
|
|
13
|
-
>
|
|
14
|
-
<div class="legends-container">
|
|
15
|
-
<div
|
|
16
|
-
class="legends-visual"
|
|
17
|
-
:style="{ background: item[colourKey] }"
|
|
18
|
-
></div>
|
|
19
|
-
<div class="label">
|
|
20
|
-
{{ capitalise(item[identifierKey]) }}
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
23
|
-
</el-row>
|
|
24
|
-
</div>
|
|
25
|
-
</div>
|
|
26
|
-
</template>
|
|
27
|
-
|
|
28
|
-
<script>
|
|
29
|
-
/* eslint-disable no-alert, no-console */
|
|
30
|
-
import Vue from 'vue'
|
|
31
|
-
import { ElCol as Col, ElRow as Row } from 'element-plus'
|
|
32
|
-
Vue.use(Col)
|
|
33
|
-
Vue.use(Row)
|
|
34
|
-
|
|
35
|
-
export default {
|
|
36
|
-
name: 'DynamicLegends',
|
|
37
|
-
props: {
|
|
38
|
-
identifierKey: {
|
|
39
|
-
type: String,
|
|
40
|
-
default: 'id',
|
|
41
|
-
},
|
|
42
|
-
colourKey: {
|
|
43
|
-
type: String,
|
|
44
|
-
default: 'colour',
|
|
45
|
-
},
|
|
46
|
-
title: {
|
|
47
|
-
type: String,
|
|
48
|
-
default: '',
|
|
49
|
-
},
|
|
50
|
-
lists: {
|
|
51
|
-
type: Array,
|
|
52
|
-
default: function () {
|
|
53
|
-
return []
|
|
54
|
-
},
|
|
55
|
-
},
|
|
56
|
-
},
|
|
57
|
-
methods: {
|
|
58
|
-
capitalise: function (label) {
|
|
59
|
-
return label.charAt(0).toUpperCase() + label.slice(1).toLowerCase()
|
|
60
|
-
},
|
|
61
|
-
},
|
|
62
|
-
}
|
|
63
|
-
</script>
|
|
64
|
-
|
|
65
|
-
<style lang="scss" scoped>
|
|
66
|
-
@use 'element-plus/theme-chalk/src/row';
|
|
67
|
-
|
|
68
|
-
.legends-visual {
|
|
69
|
-
margin: 2px;
|
|
70
|
-
width: 11px;
|
|
71
|
-
margin-right: 5px;
|
|
72
|
-
display: inline-block;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.title-display-text {
|
|
76
|
-
width: 59px;
|
|
77
|
-
height: 20px;
|
|
78
|
-
color: rgb(48, 49, 51);
|
|
79
|
-
font-size: 14px;
|
|
80
|
-
font-weight: normal;
|
|
81
|
-
line-height: 20px;
|
|
82
|
-
margin-left: 8px;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.label {
|
|
86
|
-
padding-left: 35px;
|
|
87
|
-
color: $app-primary-color;
|
|
88
|
-
font-size: 12px;
|
|
89
|
-
font-weight: 500;
|
|
90
|
-
letter-spacing: 0px;
|
|
91
|
-
line-height: 14px;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.legends-container {
|
|
95
|
-
display: flex;
|
|
96
|
-
cursor: pointer;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.legends-group {
|
|
100
|
-
width: 224;
|
|
101
|
-
border: 1px solid rgb(144, 147, 153);
|
|
102
|
-
border-radius: 4px;
|
|
103
|
-
background: #ffffff;
|
|
104
|
-
padding: 18px;
|
|
105
|
-
}
|
|
106
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<el-row>
|
|
4
|
+
<el-col :span="12">
|
|
5
|
+
<div class="title-display-text">{{ title }}</div>
|
|
6
|
+
</el-col>
|
|
7
|
+
</el-row>
|
|
8
|
+
<div class="legends-group">
|
|
9
|
+
<el-row
|
|
10
|
+
v-for="item in lists"
|
|
11
|
+
:key="item[identifierKey]"
|
|
12
|
+
:label="item[identifierKey]"
|
|
13
|
+
>
|
|
14
|
+
<div class="legends-container">
|
|
15
|
+
<div
|
|
16
|
+
class="legends-visual"
|
|
17
|
+
:style="{ background: item[colourKey] }"
|
|
18
|
+
></div>
|
|
19
|
+
<div class="label">
|
|
20
|
+
{{ capitalise(item[identifierKey]) }}
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
</el-row>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
</template>
|
|
27
|
+
|
|
28
|
+
<script>
|
|
29
|
+
/* eslint-disable no-alert, no-console */
|
|
30
|
+
import Vue from 'vue'
|
|
31
|
+
import { ElCol as Col, ElRow as Row } from 'element-plus'
|
|
32
|
+
Vue.use(Col)
|
|
33
|
+
Vue.use(Row)
|
|
34
|
+
|
|
35
|
+
export default {
|
|
36
|
+
name: 'DynamicLegends',
|
|
37
|
+
props: {
|
|
38
|
+
identifierKey: {
|
|
39
|
+
type: String,
|
|
40
|
+
default: 'id',
|
|
41
|
+
},
|
|
42
|
+
colourKey: {
|
|
43
|
+
type: String,
|
|
44
|
+
default: 'colour',
|
|
45
|
+
},
|
|
46
|
+
title: {
|
|
47
|
+
type: String,
|
|
48
|
+
default: '',
|
|
49
|
+
},
|
|
50
|
+
lists: {
|
|
51
|
+
type: Array,
|
|
52
|
+
default: function () {
|
|
53
|
+
return []
|
|
54
|
+
},
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
methods: {
|
|
58
|
+
capitalise: function (label) {
|
|
59
|
+
return label.charAt(0).toUpperCase() + label.slice(1).toLowerCase()
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
}
|
|
63
|
+
</script>
|
|
64
|
+
|
|
65
|
+
<style lang="scss" scoped>
|
|
66
|
+
@use 'element-plus/theme-chalk/src/row';
|
|
67
|
+
|
|
68
|
+
.legends-visual {
|
|
69
|
+
margin: 2px;
|
|
70
|
+
width: 11px;
|
|
71
|
+
margin-right: 5px;
|
|
72
|
+
display: inline-block;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.title-display-text {
|
|
76
|
+
width: 59px;
|
|
77
|
+
height: 20px;
|
|
78
|
+
color: rgb(48, 49, 51);
|
|
79
|
+
font-size: 14px;
|
|
80
|
+
font-weight: normal;
|
|
81
|
+
line-height: 20px;
|
|
82
|
+
margin-left: 8px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.label {
|
|
86
|
+
padding-left: 35px;
|
|
87
|
+
color: $app-primary-color;
|
|
88
|
+
font-size: 12px;
|
|
89
|
+
font-weight: 500;
|
|
90
|
+
letter-spacing: 0px;
|
|
91
|
+
line-height: 14px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.legends-container {
|
|
95
|
+
display: flex;
|
|
96
|
+
cursor: pointer;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.legends-group {
|
|
100
|
+
width: 224;
|
|
101
|
+
border: 1px solid rgb(144, 147, 153);
|
|
102
|
+
border-radius: 4px;
|
|
103
|
+
background: #ffffff;
|
|
104
|
+
padding: 18px;
|
|
105
|
+
}
|
|
106
|
+
</style>
|
|
@@ -1,112 +1,112 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="legends-container">
|
|
3
|
-
<svg
|
|
4
|
-
version="1.1"
|
|
5
|
-
id="Layer_1"
|
|
6
|
-
x="0px"
|
|
7
|
-
y="0px"
|
|
8
|
-
viewBox="0 0 500 500"
|
|
9
|
-
style="enable-background: new 0 0 500 500"
|
|
10
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
-
xmlns:bx="https://boxy-svg.com"
|
|
12
|
-
>
|
|
13
|
-
<defs>
|
|
14
|
-
<bx:grid height="30.447" width="32.516" x="0" y="0" />
|
|
15
|
-
</defs>
|
|
16
|
-
<path
|
|
17
|
-
class="st0 st0-translate"
|
|
18
|
-
d="M61.3,103.8c-15.9,0-28.8-12.3-28.8-27.3c0-15,13-27.3,28.8-27.3s28.8,12.3,28.8,27.3 C90.1,91.5,77.2,103.8,61.3,103.8z"
|
|
19
|
-
/>
|
|
20
|
-
<path
|
|
21
|
-
class="st1"
|
|
22
|
-
d="M40.3,356.1C29.5,345,29.8,328,41.5,317.5c11.7-10.5,29.6-9.9,40.7,1.1c11.1,11,10.5,28.1-1.2,38.5 C69.3,367.4,51.1,366.9,40.3,356.1z"
|
|
23
|
-
/>
|
|
24
|
-
<path
|
|
25
|
-
class="st2"
|
|
26
|
-
d="M61.2,396.9c-5.3,9.3-15.3,15.1-26.1,15.1l-0.4,0.6c5.1,9,5.1,20,0,29l0.4,0.6c10.7,0,20.8,5.8,26.1,15.1 c5.3-9.3,15.3-15.1,26.1-15.1c-5.3-9.3-5.3-20.9,0-30.4C76.6,412.1,66.7,406.3,61.2,396.9z"
|
|
27
|
-
/>
|
|
28
|
-
<text
|
|
29
|
-
transform="matrix(0.9908 0 0 1 118.0161 171.7975)"
|
|
30
|
-
class="st3 st4 st5"
|
|
31
|
-
style="white-space: pre"
|
|
32
|
-
>
|
|
33
|
-
Tissue region
|
|
34
|
-
</text>
|
|
35
|
-
<path
|
|
36
|
-
class="st6"
|
|
37
|
-
d="M40.9,231.1c11.3-10.6,29.5-10.6,40.8,0c11.3,10.6,11.3,27.9,0,38.5c-11.3,10.6-29.5,10.6-40.8,0 C29.7,259,29.7,241.7,40.9,231.1z"
|
|
38
|
-
/>
|
|
39
|
-
<text
|
|
40
|
-
transform="matrix(0.9908 0 0 1 118.0161 257.675)"
|
|
41
|
-
class="st3 st4 st5"
|
|
42
|
-
style="white-space: pre"
|
|
43
|
-
>
|
|
44
|
-
Brain nuclei
|
|
45
|
-
</text>
|
|
46
|
-
<!-- Hide this unti we can clarify the label
|
|
47
|
-
<path class="st7" d="M34.3,174c-6.2-13.9,0.6-29.9,15.3-35.7c14.7-5.9,31.6,0.6,37.8,14.4c1.5,3.5,2.3,7,2.3,10.6 c0,10.6-6.6,20.8-17.6,25.2C57.5,194.3,40.5,187.9,34.3,174z"/>
|
|
48
|
-
<text transform="matrix(0.9908 0 0 1 117.5474 171.7975)" class="st3 st4 st5" style="white-space: pre;">Specific anatomical structure</text>
|
|
49
|
-
-->
|
|
50
|
-
<text
|
|
51
|
-
transform="matrix(0.9908 0 0 1 118.0903 345.5266)"
|
|
52
|
-
class="st3 st4 st5"
|
|
53
|
-
style="white-space: pre"
|
|
54
|
-
>
|
|
55
|
-
Ganglia
|
|
56
|
-
</text>
|
|
57
|
-
<text
|
|
58
|
-
transform="matrix(0.9908 0 0 1 118.0903 433.1613)"
|
|
59
|
-
class="st3 st4 st5"
|
|
60
|
-
style="white-space: pre"
|
|
61
|
-
>
|
|
62
|
-
Ganglionated nerve plexus
|
|
63
|
-
</text>
|
|
64
|
-
</svg>
|
|
65
|
-
<svg width="72px" height="72px" viewBox="0 0 24 24" fill="yellow"></svg>
|
|
66
|
-
</div>
|
|
67
|
-
</template>
|
|
68
|
-
|
|
69
|
-
<script>
|
|
70
|
-
export default {
|
|
71
|
-
name: 'SvgLegends',
|
|
72
|
-
}
|
|
73
|
-
</script>
|
|
74
|
-
|
|
75
|
-
<style lang="scss" scoped>
|
|
76
|
-
.legends-container {
|
|
77
|
-
pointer-events: none;
|
|
78
|
-
transform: translate(0px, -35px);
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.st0-translate {
|
|
82
|
-
transform: translate(0px, 88px);
|
|
83
|
-
}
|
|
84
|
-
.st0 {
|
|
85
|
-
fill: #ff33cc;
|
|
86
|
-
}
|
|
87
|
-
.st1 {
|
|
88
|
-
fill: #b2f074;
|
|
89
|
-
}
|
|
90
|
-
.st2 {
|
|
91
|
-
opacity: 0.64;
|
|
92
|
-
fill: #e4e417;
|
|
93
|
-
enable-background: new;
|
|
94
|
-
}
|
|
95
|
-
.st3 {
|
|
96
|
-
fill: #333333;
|
|
97
|
-
}
|
|
98
|
-
.st4 {
|
|
99
|
-
font-family: Asap, sans-serif;
|
|
100
|
-
}
|
|
101
|
-
.st5 {
|
|
102
|
-
font-size: 32px;
|
|
103
|
-
}
|
|
104
|
-
.st6 {
|
|
105
|
-
fill: #f15a24;
|
|
106
|
-
}
|
|
107
|
-
.st7 {
|
|
108
|
-
fill: #66ffff;
|
|
109
|
-
stroke: #000000;
|
|
110
|
-
stroke-width: 3;
|
|
111
|
-
}
|
|
112
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="legends-container">
|
|
3
|
+
<svg
|
|
4
|
+
version="1.1"
|
|
5
|
+
id="Layer_1"
|
|
6
|
+
x="0px"
|
|
7
|
+
y="0px"
|
|
8
|
+
viewBox="0 0 500 500"
|
|
9
|
+
style="enable-background: new 0 0 500 500"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:bx="https://boxy-svg.com"
|
|
12
|
+
>
|
|
13
|
+
<defs>
|
|
14
|
+
<bx:grid height="30.447" width="32.516" x="0" y="0" />
|
|
15
|
+
</defs>
|
|
16
|
+
<path
|
|
17
|
+
class="st0 st0-translate"
|
|
18
|
+
d="M61.3,103.8c-15.9,0-28.8-12.3-28.8-27.3c0-15,13-27.3,28.8-27.3s28.8,12.3,28.8,27.3 C90.1,91.5,77.2,103.8,61.3,103.8z"
|
|
19
|
+
/>
|
|
20
|
+
<path
|
|
21
|
+
class="st1"
|
|
22
|
+
d="M40.3,356.1C29.5,345,29.8,328,41.5,317.5c11.7-10.5,29.6-9.9,40.7,1.1c11.1,11,10.5,28.1-1.2,38.5 C69.3,367.4,51.1,366.9,40.3,356.1z"
|
|
23
|
+
/>
|
|
24
|
+
<path
|
|
25
|
+
class="st2"
|
|
26
|
+
d="M61.2,396.9c-5.3,9.3-15.3,15.1-26.1,15.1l-0.4,0.6c5.1,9,5.1,20,0,29l0.4,0.6c10.7,0,20.8,5.8,26.1,15.1 c5.3-9.3,15.3-15.1,26.1-15.1c-5.3-9.3-5.3-20.9,0-30.4C76.6,412.1,66.7,406.3,61.2,396.9z"
|
|
27
|
+
/>
|
|
28
|
+
<text
|
|
29
|
+
transform="matrix(0.9908 0 0 1 118.0161 171.7975)"
|
|
30
|
+
class="st3 st4 st5"
|
|
31
|
+
style="white-space: pre"
|
|
32
|
+
>
|
|
33
|
+
Tissue region
|
|
34
|
+
</text>
|
|
35
|
+
<path
|
|
36
|
+
class="st6"
|
|
37
|
+
d="M40.9,231.1c11.3-10.6,29.5-10.6,40.8,0c11.3,10.6,11.3,27.9,0,38.5c-11.3,10.6-29.5,10.6-40.8,0 C29.7,259,29.7,241.7,40.9,231.1z"
|
|
38
|
+
/>
|
|
39
|
+
<text
|
|
40
|
+
transform="matrix(0.9908 0 0 1 118.0161 257.675)"
|
|
41
|
+
class="st3 st4 st5"
|
|
42
|
+
style="white-space: pre"
|
|
43
|
+
>
|
|
44
|
+
Brain nuclei
|
|
45
|
+
</text>
|
|
46
|
+
<!-- Hide this unti we can clarify the label
|
|
47
|
+
<path class="st7" d="M34.3,174c-6.2-13.9,0.6-29.9,15.3-35.7c14.7-5.9,31.6,0.6,37.8,14.4c1.5,3.5,2.3,7,2.3,10.6 c0,10.6-6.6,20.8-17.6,25.2C57.5,194.3,40.5,187.9,34.3,174z"/>
|
|
48
|
+
<text transform="matrix(0.9908 0 0 1 117.5474 171.7975)" class="st3 st4 st5" style="white-space: pre;">Specific anatomical structure</text>
|
|
49
|
+
-->
|
|
50
|
+
<text
|
|
51
|
+
transform="matrix(0.9908 0 0 1 118.0903 345.5266)"
|
|
52
|
+
class="st3 st4 st5"
|
|
53
|
+
style="white-space: pre"
|
|
54
|
+
>
|
|
55
|
+
Ganglia
|
|
56
|
+
</text>
|
|
57
|
+
<text
|
|
58
|
+
transform="matrix(0.9908 0 0 1 118.0903 433.1613)"
|
|
59
|
+
class="st3 st4 st5"
|
|
60
|
+
style="white-space: pre"
|
|
61
|
+
>
|
|
62
|
+
Ganglionated nerve plexus
|
|
63
|
+
</text>
|
|
64
|
+
</svg>
|
|
65
|
+
<svg width="72px" height="72px" viewBox="0 0 24 24" fill="yellow"></svg>
|
|
66
|
+
</div>
|
|
67
|
+
</template>
|
|
68
|
+
|
|
69
|
+
<script>
|
|
70
|
+
export default {
|
|
71
|
+
name: 'SvgLegends',
|
|
72
|
+
}
|
|
73
|
+
</script>
|
|
74
|
+
|
|
75
|
+
<style lang="scss" scoped>
|
|
76
|
+
.legends-container {
|
|
77
|
+
pointer-events: none;
|
|
78
|
+
transform: translate(0px, -35px);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.st0-translate {
|
|
82
|
+
transform: translate(0px, 88px);
|
|
83
|
+
}
|
|
84
|
+
.st0 {
|
|
85
|
+
fill: #ff33cc;
|
|
86
|
+
}
|
|
87
|
+
.st1 {
|
|
88
|
+
fill: #b2f074;
|
|
89
|
+
}
|
|
90
|
+
.st2 {
|
|
91
|
+
opacity: 0.64;
|
|
92
|
+
fill: #e4e417;
|
|
93
|
+
enable-background: new;
|
|
94
|
+
}
|
|
95
|
+
.st3 {
|
|
96
|
+
fill: #333333;
|
|
97
|
+
}
|
|
98
|
+
.st4 {
|
|
99
|
+
font-family: Asap, sans-serif;
|
|
100
|
+
}
|
|
101
|
+
.st5 {
|
|
102
|
+
font-size: 32px;
|
|
103
|
+
}
|
|
104
|
+
.st6 {
|
|
105
|
+
fill: #f15a24;
|
|
106
|
+
}
|
|
107
|
+
.st7 {
|
|
108
|
+
fill: #66ffff;
|
|
109
|
+
stroke: #000000;
|
|
110
|
+
stroke-width: 3;
|
|
111
|
+
}
|
|
112
|
+
</style>
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
export default
|
|
1
|
+
export default `<div class="flatmap-marker">
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="39" viewBox="-1 -1 27 42">
|
|
3
|
+
<ellipse style="fill: rgb(0, 0, 0); fill-opacity: 0.2;" cx="12" cy="36" rx="8" ry="4"></ellipse>
|
|
4
|
+
<path d="M12.25.25a12.254 12.254 0 0 0-12 12.494c0 6.444 6.488 12.109 11.059 22.564.549 1.256 1.333 1.256 1.882 0
|
|
5
|
+
C17.762 24.853 24.25 19.186 24.25 12.744A12.254 12.254 0 0 0 12.25.25Z" style="fill:#EE5900;stroke:#fff;stroke-width:1"></path>
|
|
6
|
+
<circle cx="12.5" cy="12.5" r="9" fill="#fff"></circle>
|
|
7
|
+
<text x="12" y="17.5" style="font-size:14px;fill:#000;text-anchor:middle">2</text>
|
|
8
|
+
</svg>
|
|
9
|
+
</div>`
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
-
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
-
<defs>
|
|
6
|
-
<font id="mapicon-species" horiz-adv-x="1024">
|
|
7
|
-
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
-
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
-
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
-
<glyph unicode="" glyph-name="mapicon_rat" horiz-adv-x="819" d="M702.62 590.735c-131.244 88.809-222.020 55.263-310.338 11.6-80.421-39.748-111.010-37.749-111.010-37.749 0 42.926-45.81 22.659-45.81 22.659s-7.397 17.22-28.123 17.023c-41.443-0.393-60.76-88.523-60.76-88.523-92.258-27.632-137.65-133.652-137.65-133.652s-12.37-9.724-7.168-19.063c4.678-8.372 16.769-3.932 16.769-3.932 108.306-47.063 190.202 0.492 190.202 0.492 14.189-5.366 29.606 2.22 29.606 2.22 24.928-30.491 51.61-40.575 79.585-41.878 5.046-14.262 7.758-48.333-23.282-38.683-44.089 13.713-68.043 4.686-78.717-7.979-7.152-8.495-4.964-17.449 26.862-16.802h79.421c0 0 35.627-2.474 37.241 21.635 1.556 23.306 19.882 49.889 47.489 52.83 42.942 6.447 87.589 6.742 132.612-32.768 0.164-0.139 0.311-0.254 0.467-0.385 9.871-8.962 7.823-15.901-0.049-18.145-3.604-0.778-8.151-0.5-13.836 1.27-44.098 13.705-68.051 4.678-78.725-7.987-7.152-8.495-4.956-17.105 26.862-16.458h115.057c75.948-37.888 162.742-7.34 189.858 30.228 0.672-3.023 1.27-6.16 1.712-9.429 3.981-30.384-6.873-55.124-32.268-73.54-51.315-37.208-112.574-19.882-177.39-1.507-9.454 2.671-18.94 5.349-28.402 7.873-74.801 19.89-164.569 33.546-283.82-56.885-4.645-3.514-5.546-10.134-2.040-14.778 3.523-4.653 10.15-5.562 14.795-2.040 111.665 84.697 195.682 71.918 265.634 53.305 9.355-2.499 18.719-5.145 28.066-7.782 47.514-13.459 96.166-27.238 141.771-18.547 18.522 3.539 36.545 10.781 53.772 23.282 47.342 34.316 46.719 83.255 35.447 117.596 43.844 56.222 28.033 204.038-93.839 286.499z" />
|
|
11
|
-
<glyph unicode="" glyph-name="mapicon_pig" horiz-adv-x="819" d="M744.603 509.563c-8.333 10-16.667 18.333-25.833 25.833 6.667 6.667 12.5 13.333 15.001 16.667 5.833 10.834 1.666 42.5-5 47.5-4.167 3.334-9.167-1.666-17.5-8.333 0 5.833-0.833 11.667-4.167 16.667-4.167 6.667-25-16.667-41.667-38.333-11.667 5-23.334 8.333-35 10-37.5 5-215.002 41.667-380.001 41.667-75.834 0-120.834-10-164.167-44.167-3.334-2.5-6.667-5.833-10-10.834-8.333-9.167-26.666-25.833-45.834-23.334-12.5 1.666-13.333 11.667-10 19.167 5 10 19.167 10 31.667 5 9.167-3.334 13.333 10.834-2.5 16.667-19.167 7.5-39.167 0-45.834-12.5-8.333-14.166-7.5-34.167 5.833-42.5 15.834-10 33.334-8.333 48.334-2.5-3.334-11.667-5.833-25-5.833-39.167-5-71.667 38.333-104.167 17.5-125.834-28.334-28.334 6.667-41.667 5-67.5-1.666-20.833-1.666-30 5-29.167 12.5 2.5 12.5 2.5 18.333-15.001 0.833-5.833 3.334-12.5 11.667-12.5h35c0 16.667-23.334 20.833-34.167 73.334-5.833 28.334 14.166 53.334 35.834 71.667 1.666-0.833 4.167-0.833 5.833-1.666-1.666-10.834-4.167-19.167 9.167-35.834 9.167-10.834 10-57.501 11.667-75.001 0.833-6.667 13.333 3.334 14.166-5 2.5-14.166 5-26.666 10-26.666h40.001c0 7.5-20 25-25.833 48.334-8.333 31.667-0.833 51.667 10 70.834l-20 9.167c-1.666 0.833-0.833 4.167 1.666 3.334 0 0 23.334-5.833 23.334-5.833 6.667-1.666 13.333-3.334 20.833-5.833h0.833c8.333-2.5 17.5-5 26.666-8.333 43.333-14.166 105.001-10 176.667 15.834 3.334-21.667 7.5-53.334 6.667-61.667-2.5-12.5-11.667-30.833 0-44.167 3.334-3.334 8.333 0.833 10-1.666 0-3.334 0.833-5.833 1.666-8.333 1.666-6.667 9.167-11.667 16.667-11.667h31.667c-10 20-17.5 20-20 38.333-4.167 26.666 4.167 62.5 18.333 88.334 12.5-35 25-77.501 21.667-85-4.167-7.5 0.833-25 10.834-17.5 3.334 2.5 5-4.167 5-11.667 0-5.833 5.833-13.333 10.834-13.333h38.333c-5 11.667-16.667 20-24.167 50.833-3.334 15.001-5.833 51.667 1.666 85 45.834 0 64.167 28.334 90.001 30.833 15.834 1.666 39.167 0.833 55 4.167 40.834 8.333 70.001 12.5 75.834 28.334 2.5 7.5 18.333 8.333 15.834 8.333v42.5c-29.167 0-45.834-8.333-72.5 22.5z" />
|
|
12
|
-
<glyph unicode="" glyph-name="mapicon_mouse" horiz-adv-x="1194" d="M1159.101 300.323c-14.366 43.098-38.309 81.407-71.83 114.927-6.385 6.385-9.577 14.366-4.789 23.943 9.577 25.539 9.577 52.675-7.981 75.022-15.962 17.559-36.713 23.943-59.060 19.155-33.521-7.981-38.309-33.521-41.502-62.252-62.252 0-159.621 111.735-378.303 63.848-140.467-30.327-263.375-145.255-244.221-300.089-6.385-15.962-14.366-30.327-30.327-39.905-28.732-19.155-75.022-25.539-108.543-20.75-49.482 6.385-89.388 28.732-119.716 67.041-49.482 62.252-49.482 135.678-30.327 205.912 51.079 188.353 193.142 276.145 332.012 394.265 17.559 15.962 14.366 30.327-7.981 17.559-150.044-86.196-319.243-225.066-370.321-395.862-49.482-159.621 17.559-300.089 183.564-338.398 73.426-4.789 83.003 1.596 150.044 30.327 12.77 6.385 27.136 9.577 41.502 7.981 15.962-28.732 173.987-59.060 210.7-57.464 22.347 0 84.6-25.539 100.562-41.502 4.789-3.193 9.577-4.789 15.962-6.385 9.577-4.789 23.943-1.596 27.136-12.77 4.789 14.366-12.77 15.962-22.347 22.347 25.539 3.193 9.577-3.193 30.327-7.981 6.385-1.596 17.559-6.385 19.155-12.77 4.789 14.366-4.789 14.366-15.962 31.925 3.193-3.193 7.981-6.385 11.173-9.577 3.193-4.789 6.385-7.981 11.173-7.981 9.577-1.596 11.173 0 11.173-11.173 3.193 6.385 3.193 6.385 3.193 12.77-4.789 9.577-4.789 6.385-6.385 9.577-4.789 4.789-7.981 4.789-9.577 9.577-4.789 11.173-7.981 11.173-19.155 15.962-15.962 4.789-36.713 17.559-35.116 17.559 59.060 1.596 110.139 7.981 169.198 14.366 1.596 0 23.943-22.347 23.943-23.943 6.385-9.577 14.366-15.962 25.539-19.155 17.559-3.193 25.539-11.173 33.521-25.539 1.596-3.193 6.385-9.577 12.77-6.385-1.596 1.596-1.596 3.193-3.193 4.789 3.193 7.981-9.577 14.366-12.77 22.347 7.981 1.596 25.539-11.173 27.136-15.962 1.596-3.193 11.173-4.789 12.77-3.193 3.193 1.596 3.193 0 4.789 1.596-3.193 1.596-3.193 1.596-4.789 3.193s-1.596 3.193-1.596 4.789c-3.193 4.789-6.385 9.577-9.577 14.366 0-1.596 11.173-7.981 12.77-9.577 1.596-3.193 7.981-4.789 12.77-6.385 11.173-1.596 9.577 3.193 12.77 3.193-4.789 1.596-3.193 0-4.789 1.596 0 1.596-4.789 1.596-4.789 3.193-4.789 9.577-11.173 14.366-19.155 19.155 6.385 3.193 7.981 1.596 11.173-6.385 6.385 4.789 3.193 14.366-4.789 17.559-6.385 1.596-19.155 3.193-22.347 3.193-7.981 0-38.309 20.75-39.905 27.136 38.309 3.193 73.426 15.962 110.139-1.596 15.962-9.577 33.521-19.155 51.079-23.943 22.347-6.385 33.521-1.596 49.482 11.173 15.962-6.385 27.136 4.789 28.732 19.155 1.596 22.347-23.943 126.101-35.116 156.429z" />
|
|
13
|
-
<glyph unicode="" glyph-name="mapicon_human" horiz-adv-x="819" d="M744.863 620.732c0 18.065 4.52 45.154 4.52 53.048 0 3.391-2.26 12.414-3.391 18.065 1.13 1.13 2.26 27.089-4.52 46.284-5.65 16.935-20.325 27.089-21.439 27.089-6.764 5.65-14.675 9.025-19.195 10.155-2.26 1.13-7.894 5.65-10.155 5.65-5.65 5.65-23.699 14.675-29.349 16.935-5.65 3.391-25.959 10.155-32.74 18.065v21.439c3.391 3.391 4.52 20.325 5.65 24.829 3.391-2.26 9.025 3.391 9.025 5.65 0 4.52 5.65 6.764 5.65 20.325 1.13 4.52 0 11.284-3.391 11.284s-6.764-2.26-6.764-2.26c0 4.52 2.26 16.935 2.26 23.699 0 5.65 1.13 38.374-44.024 38.374-46.284 0-44.024-32.74-44.024-38.374 0-6.764 2.26-19.195 2.26-23.699 0 0-4.52 2.26-6.764 2.26-3.391 0-5.65-6.764-3.391-11.284 0-14.675 5.65-15.805 5.65-20.325 0-2.26 5.65-9.025 9.025-5.65 1.13-4.52 3.391-21.439 5.65-24.829v-21.439c-6.764-7.894-27.089-14.675-32.74-18.065s-23.699-12.414-29.349-16.935c-2.26-1.13-7.894-4.52-10.155-5.65-4.52-1.13-12.414-4.52-19.195-10.155-1.13 0-15.805-10.155-21.439-27.089-6.764-19.195-5.65-45.154-4.52-46.284-1.13-5.65-3.391-15.805-3.391-18.065 0-7.894 4.52-34.983 4.52-53.048-2.26-7.894-7.894-27.089-4.52-47.414 3.391-19.195 10.155-74.503 11.284-92.551 0-9.025 1.13-16.935 4.52-24.829s7.894-24.829 7.894-31.61c0-4.52 1.13-10.155 3.391-13.544 2.26-4.52 2.26-14.675 7.894-21.439 2.26-2.26 16.935-14.675 25.959-19.195 4.52-31.61 12.414-65.463 25.959-84.657-2.26-9.025-2.26-27.089 0-38.374 1.13-9.025-3.391-41.763 0-50.788-1.13-6.764-5.65-31.61-5.65-45.154 0-42.894 22.569-93.682 31.61-124.161-2.26-5.65-5.65-21.439-1.13-30.479-3.391-2.26-6.764-10.155-7.894-12.414l-11.284-10.155c-2.26 0-6.764-3.391-5.65-7.894-2.26-2.26-3.391-10.155 5.65-11.284 2.26-1.13 9.025-1.13 10.155 0 2.26 0 7.894-1.13 10.155 0 3.391-1.13 11.284-2.26 14.675 0 3.391-1.13 14.675-3.391 20.325 3.391 2.26 1.13 2.26 4.52 3.391 5.65s1.13 13.544-1.13 16.935c0 0-2.26 3.391-1.13 5.65 1.13 4.52 0 11.284 0 14.675s3.391 10.155 3.391 12.414c0 4.52-7.894 14.675-9.025 24.829 1.13 14.675 4.52 56.438 4.52 64.332 2.26 5.65 5.65 21.439 5.65 29.349 0 11.284-9.025 54.179-9.025 65.463 3.391 7.894 7.894 25.959 7.894 40.633 0 3.391-2.26 25.959-2.26 28.219 2.26 5.65 0 53.048-1.13 66.593 1.13 5.65 6.764 44.024 6.764 58.698 0-14.675 5.65-53.048 6.764-58.698-2.26-12.414-3.391-59.829-1.13-66.593 0-1.13-2.26-24.829-2.26-28.219 0-14.675 4.52-33.87 7.894-40.633 0-11.284-9.025-54.179-9.025-65.463 0-7.894 3.391-23.699 5.65-29.349 0-7.894 3.391-49.658 4.52-64.332-2.26-10.155-9.025-20.325-9.025-24.829 0-2.26 3.391-9.025 3.391-12.414s-1.13-11.284 0-14.675c1.13-3.391-1.13-5.65-1.13-5.65-2.26-3.391-2.26-15.805-1.13-16.935s2.26-3.391 3.391-5.65c5.65-6.764 16.935-4.52 20.325-3.391 3.391-2.26 11.284-1.13 14.675 0 2.26-1.13 7.894 0 10.155 0 1.13-1.13 9.025-1.13 10.155 0 9.025 0 7.894 9.025 5.65 11.284 0 4.52-4.52 9.025-5.65 7.894l-11.284 10.155c-1.13 2.26-5.65 10.155-7.894 12.414 5.65 9.025 2.26 25.959-1.13 30.479 9.025 30.479 31.61 81.267 31.61 124.161 0 12.414-4.52 37.244-5.65 45.154 3.391 9.025-1.13 41.763 0 50.788 2.26 11.284 2.26 29.349 0 38.374 13.544 20.325 21.439 53.048 25.959 84.657 10.155 5.65 24.829 16.935 25.959 19.195 4.52 6.764 5.65 18.065 7.894 21.439 1.13 3.391 3.391 9.025 3.391 13.544 0 6.764 4.52 23.699 7.894 31.61 3.391 9.025 4.52 16.935 4.52 24.829 0 19.195 7.894 73.373 11.284 92.551-3.391 20.325-9.025 39.504-11.284 47.414zM504.447 498.832c-3.391-11.284-7.894-28.219-9.025-48.528-2.26 1.13-5.65 1.13-9.025 2.26-1.13 3.391 20.325 102.706 12.414 142.226-1.13 5.65-4.52 16.935-7.894 22.569 2.26 6.764 4.52 18.065 4.52 25.959 0-6.764 13.544-31.61 13.544-50.788 0-10.155-7.894-45.154 3.391-57.568-2.26-6.764-9.025-24.829-7.894-36.113zM695.2 450.288c0 21.439-5.65 37.244-9.025 48.528 2.26 11.284-5.65 29.349-6.764 34.983 10.155 13.544 3.391 47.414 3.391 57.568 0 20.325 13.544 44.024 13.544 50.788 0-7.894 2.26-19.195 4.52-25.959-3.391-5.65-6.764-18.065-7.894-22.569-7.894-39.504 12.414-138.836 12.414-142.226-5.65 0-7.894-1.13-10.155-1.13zM295.645 730.218c0 54.179-32.74 44.024-65.463 50.788s-27.089 47.414-27.089 48.528c1.13 2.26 3.391 4.52 4.52 9.025s2.26 10.155 3.391 12.414c2.26-1.13 4.52 0 4.52 2.26 1.13 2.26 1.13 7.894 2.26 10.155s10.155 16.935 4.52 19.195c-2.26 1.13-3.391-1.13-3.391-2.26 0 6.764 3.391 20.325-1.13 34.983-2.26 11.284-12.414 32.74-40.633 32.74-30.479 0-42.894-25.959-44.024-36.113-1.13-11.284 2.26-33.87 1.13-31.61-2.26 5.65-5.65 3.391-6.764 2.26s-2.26-2.26 1.13-9.025c2.26-4.52 4.52-11.284 4.52-12.414s1.13-9.025 5.65-9.025c2.26 0 4.52-4.52 5.65-7.894s2.26-12.414 6.764-13.544c0 0 6.764-41.763-25.959-48.528s-64.332 3.391-65.463-50.788c0-54.179 4.52-98.202-1.13-112.877-7.894-20.325-2.26-155.771-2.26-155.771s6.764-28.219 5.65-33.87c0-4.52-2.26-10.155-1.13-14.675 1.13-3.391 23.699-33.87 24.829-36.113 1.13-1.13 4.52-2.26 5.65-3.391 2.26-10.155 5.65-20.325 9.025-30.479 19.195-48.528 19.195-53.048 21.439-65.463 1.13-3.391 2.26-20.325 1.13-42.894-1.13-19.195-3.391-42.894-3.391-65.463 0-30.479 18.065-81.267 20.325-90.291 4.52-16.935 2.26-31.61 2.26-31.61l-1.13-14.675 1.13-2.26c0 0-3.391-13.544-3.391-15.805s2.26-12.414 0-18.065c-1.13-4.52-5.65-19.195-5.65-19.195l-3.391-4.52-1.13-7.894 2.26-2.26h3.391l2.26-5.65h6.764l2.26-3.391 3.391-1.13 2.26 1.13 3.391-2.26h2.26l6.764 1.13c0 0 4.52-2.26 6.764-2.26s4.52 2.26 4.52 2.26 0 1.13 1.13 3.391c0-2.26 1.13-3.391 1.13-3.391s2.26-2.26 4.52-2.26c2.26 0 6.764 2.26 6.764 2.26l6.764-1.13h2.26l3.391 2.26 2.26-1.13 3.391 1.13 2.26 3.391h6.764l2.26 5.65h3.391l2.26 2.26-1.13 7.894-3.391 4.52c0 0-4.52 14.675-5.65 19.195s0 15.805 0 18.065c0 2.26-3.391 15.805-3.391 15.805l1.13 2.26-1.13 14.675c0 0-2.26 14.675 2.26 31.61 2.26 7.894 20.325 59.829 20.325 90.291 0 23.699-2.26 46.284-3.391 65.463-1.13 22.569 1.13 39.504 1.13 42.894 2.26 12.414 2.26 15.805 21.439 65.463 3.391 10.155 6.764 20.325 9.025 30.479 1.13 0 4.52 2.26 5.65 3.391 1.13 2.26 23.699 32.74 24.829 36.113s0 9.025-1.13 14.675c0 4.52 5.65 33.87 5.65 33.87s5.65 135.445-2.26 155.771c-2.26 12.414 3.391 57.568 2.26 111.747zM112.785 560.904c-2.26-3.391-23.699-44.024-27.089-101.592-2.26 3.391-5.65 7.894-6.764 7.894-1.13 1.13 3.391 82.398 13.544 124.161 3.391 11.284 0 45.154 0 48.528 0 18.065 1.13 19.195 1.13 19.195s5.65-9.025 7.894-10.155c1.13 0 2.26-19.195 12.414-44.024 6.764-20.325 0-40.633-1.13-44.024zM172.614 422.085c1.13 3.391 5.65 2.26 5.65 2.26s4.52 1.13 5.65-2.26c1.13-3.391-7.894-48.528-5.65-100.462 2.26-34.983 1.13-66.593 1.13-69.982 0-6.764 2.26-31.61 2.26-39.504 0-5.65-3.391-27.089-4.52-44.024-1.13 18.065-4.52 38.374-4.52 44.024 0 7.894 2.26 32.74 2.26 39.504 0 2.26-1.13 34.983 1.13 69.982 4.52 51.918-5.65 97.072-3.391 100.462zM178.248-15.86c-2.26 6.764-4.52 14.675-2.26 19.195 1.13 1.13 1.13 3.391 2.26 4.52 1.13-1.13 1.13-2.26 2.26-4.52 2.26-4.52 0-12.414-2.26-19.195zM180.508 48.472c-2.26-3.391 1.13-16.935 1.13-16.935s-1.13-4.52-3.391-11.284c-2.26 5.65-3.391 11.284-3.391 11.284s2.26 13.544 1.13 16.935c-2.26 3.391-4.52 7.894-4.52 7.894s4.52 74.503 6.764 91.421c2.26-15.805 6.764-91.421 6.764-91.421s-3.391-3.391-4.52-7.894zM277.58 467.223c-1.13-1.13-4.52-4.52-6.764-7.894-4.52 58.698-24.829 98.202-27.089 101.592-1.13 2.26-7.894 23.699-1.13 42.894 9.025 24.829 11.284 44.024 12.414 44.024 2.26 0 7.894 10.155 7.894 10.155s1.13-1.13 1.13-19.195c0-2.26-2.26-36.113 0-48.528 10.155-40.633 14.675-121.901 13.544-123.031z" />
|
|
14
|
-
<glyph unicode="" glyph-name="mapicon_cat" horiz-adv-x="837" d="M495.2 956.4c-31.6-10.64-50.32-20.72-78.8-42.32-7.040-5.36-14.56-10.88-16.8-12.24-8.56-5.36-14.96-6.72-22-4.64-5.76 1.68-25.36 5.68-36 7.44-6.4 1.040-13.36 1.36-29.2 1.28-21.36 0-30.080-0.8-47.12-4.32-21.92-4.48-24.8-4.16-38.88 4.72-22 13.92-43.28 24.96-64 33.12-12.8 5.040-28.48 10.24-34.64 11.36-3.6 0.72-3.44 1.6-1.76-15.28 4.72-45.28 15.040-80.8 30.16-104.16 3.76-5.84 3.92-3.68-1.28-20.48-9.36-30.32-10.96-60.72-4.56-85.84 0.96-3.6 1.68-6.88 1.68-7.36 0-0.64-8-0.88-26.56-0.88-28.24 0-51.68-0.88-75.84-2.88-16-1.28-40-3.92-45.68-5.040-5.84-1.12-0.24-0.96 9.36 0.24 36.16 4.8 95.84 7.84 126.24 6.48l13.44-0.56 1.52-3.76c0.88-2 3.76-8.080 6.48-13.52 2.72-5.36 4.72-9.92 4.48-10.16s-7.36-1.28-15.92-2.4c-30.72-4-61.52-9.68-88.72-16.4-16.64-4.16-39.44-10.8-46-13.52-6.48-2.64-2.16-1.92 6.88 1.12 37.2 12.64 72.64 20 141.6 29.6 3.52 0.48 4.16 0 10.080-7.6 2.64-3.28 6.8-8.24 9.28-10.88 2.48-2.72 4.56-5.28 4.56-5.68s-4.24-2.32-9.36-4.24c-21.040-7.76-48.56-20.56-67.44-31.44-10.72-6.16-30.8-19.2-31.68-20.64-0.4-0.64 0.32-0.48 1.68 0.4 24.4 16 34.080 21.76 51.52 30.4 23.36 11.76 54.48 24.24 57.92 23.36 2.64-0.64 15.52-14.32 20.24-21.44 8.56-12.8 11.12-23.44 10.48-42.56-0.72-20.72-3.6-35.92-15.36-80-11.28-42.64-15.44-62.56-18.56-90.24-1.92-17.2-1.92-57.2 0-73.6 5.52-46.4 16.96-84.24 43.040-142.4 12.4-27.68 14.8-33.44 19.040-45.68 4.8-13.92 7.68-28.72 9.68-50.16 2.24-23.68 3.36-107.52 1.44-109.44-0.56-0.56-3.040-0.96-5.52-0.96-5.76 0-17.2-2-22.88-4-6.4-2.24-9.36-4.88-12.32-10.8-2.96-6-3.92-14.48-2.4-20.24 2.8-10.24 17.92-17.52 42.8-20.56 66.32-8.080 168.72-13.2 219.68-10.88 11.68 0.56 29.12 1.28 38.8 1.76 48.48 2.080 91.040 5.84 140.8 12.4 26.56 3.44 45.84 6.64 50.32 8.32 37.12 13.92 71.2 97.92 93.2 230 11.36 67.92 12.88 95.68 7.2 130-7.92 47.84-30.64 93.12-70.24 140-4.64 5.52-21.76 23.52-38.080 40-37.040 37.44-47.68 49.84-62.080 71.84-11.76 18-22.48 43.44-26 61.76-2.16 11.28-2 35.44 0.4 48.4 3.44 19.12 11.44 38.64 21.44 52.64 21.52 29.84 63.68 50.16 100.16 48.32 22.4-1.2 41.6-10 47.36-21.92 5.12-10.64-1.12-26.16-14.16-35.12-10.72-7.28-22-8.8-36.8-4.88-10.48 2.72-15.92 3.36-20.16 2.24-11.2-3.040-16.56-18.24-10.48-30.32 3.28-6.64 9.52-12.16 18.64-16.56 10.48-4.96 17.28-6.32 30.8-5.76 8.64 0.32 12.32 0.8 18.080 2.48 14.88 4.48 30.4 13.36 41.76 24 14.64 13.6 21.2 26.8 25.76 51.36 1.28 6.96 1.12 12.16-0.8 21.84-3.84 20-9.84 31.2-23.44 43.84-14.56 13.52-26.48 19.44-46.88 23.2-10.96 2-43.2 2-55.6 0-56.4-9.28-100.48-36.72-129.44-80.56-6.72-10.24-11.44-19.92-15.44-31.76-1.68-4.96-3.36-9.12-3.84-9.28s-5.52 0-11.28 0.4c-5.68 0.4-25.36 0.96-43.6 1.28-28.8 0.48-33.2 0.72-33.12 1.76 0.080 0.64 0.88 4.48 1.76 8.4 6.080 26.64 3.68 53.040-7.36 80.64l-3.44 8.64 3.12 4.56c17.52 25.12 26.8 43.84 32.56 65.76 4.8 18.32 5.28 22.4 5.2 46.4 0 12.080-0.4 22.96-0.8 24.080l-0.72 2.080-7.6-2.56zM546.32 714.4c7.6-0.48 13.44-1.2 13.68-1.68 0.32-0.48 0.080-2.88-0.48-5.36-1.68-6.96-4.32-25.68-4.32-30.4 0-5.040-1.12-7.6-3.040-7.040-8.8 2.8-56.56 11.6-78.56 14.48-12.96 1.68-13.6 1.84-13.6 3.12 0 0.56 1.76 4.8 3.84 9.36 2.16 4.56 4.72 10.56 5.68 13.28 1.84 4.88 1.92 4.96 5.2 5.36 5.2 0.56 57.12-0.24 71.6-1.12zM480 682.4c20.64-3.040 43.76-7.2 60.8-11.040l13.2-2.96 0.16-4.8c2.24-57.040 12.64-88.4 46.080-138.8 22.16-33.36 45.2-60.56 91.36-108 21.28-21.84 30.16-33.2 41.12-52.24 18-31.28 25.92-65.52 24.56-106.16-2.32-67.2-17.76-137.84-42.080-192.56-10.96-24.8-20.8-38.72-30.8-43.44-7.76-3.76-17.44-2.16-22.88 3.76-7.92 8.48-8.080 18.64-1.2 76.16 6.24 52.24 7.12 64.72 6.56 90.080-0.24 11.44-0.8 23.84-1.28 27.6-4.8 39.12-15.44 72-37.6 115.84-25.68 50.96-43.44 75.44-85.2 117.36-23.76 23.92-39.68 38.56-64.24 58.96-37.52 31.28-44.56 39.44-52 60.64-4.32 12.4-6.080 23.6-6.16 38.4 0 11.68 0.24 13.76 1.84 18.48 2.64 7.68 13.68 24.96 16.72 26.080 2.24 0.88 31.84-11.68 51.2-21.76 14-7.36 26.56-14.8 38.88-22.96 5.12-3.44 9.36-5.92 9.36-5.52 0 0.96-22.4 15.44-34.4 22.24-17.6 9.92-39.76 20.4-56.24 26.64-5.12 2-6.96 3.040-6.8 3.92 0.16 0.72 4 6.96 8.64 13.84 8.16 12.24 8.48 12.64 11.2 12.64 1.52 0 10.16-1.040 19.2-2.4z" />
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
4
|
+
<metadata>Generated by IcoMoon</metadata>
|
|
5
|
+
<defs>
|
|
6
|
+
<font id="mapicon-species" horiz-adv-x="1024">
|
|
7
|
+
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
|
8
|
+
<missing-glyph horiz-adv-x="1024" />
|
|
9
|
+
<glyph unicode=" " horiz-adv-x="512" d="" />
|
|
10
|
+
<glyph unicode="" glyph-name="mapicon_rat" horiz-adv-x="819" d="M702.62 590.735c-131.244 88.809-222.020 55.263-310.338 11.6-80.421-39.748-111.010-37.749-111.010-37.749 0 42.926-45.81 22.659-45.81 22.659s-7.397 17.22-28.123 17.023c-41.443-0.393-60.76-88.523-60.76-88.523-92.258-27.632-137.65-133.652-137.65-133.652s-12.37-9.724-7.168-19.063c4.678-8.372 16.769-3.932 16.769-3.932 108.306-47.063 190.202 0.492 190.202 0.492 14.189-5.366 29.606 2.22 29.606 2.22 24.928-30.491 51.61-40.575 79.585-41.878 5.046-14.262 7.758-48.333-23.282-38.683-44.089 13.713-68.043 4.686-78.717-7.979-7.152-8.495-4.964-17.449 26.862-16.802h79.421c0 0 35.627-2.474 37.241 21.635 1.556 23.306 19.882 49.889 47.489 52.83 42.942 6.447 87.589 6.742 132.612-32.768 0.164-0.139 0.311-0.254 0.467-0.385 9.871-8.962 7.823-15.901-0.049-18.145-3.604-0.778-8.151-0.5-13.836 1.27-44.098 13.705-68.051 4.678-78.725-7.987-7.152-8.495-4.956-17.105 26.862-16.458h115.057c75.948-37.888 162.742-7.34 189.858 30.228 0.672-3.023 1.27-6.16 1.712-9.429 3.981-30.384-6.873-55.124-32.268-73.54-51.315-37.208-112.574-19.882-177.39-1.507-9.454 2.671-18.94 5.349-28.402 7.873-74.801 19.89-164.569 33.546-283.82-56.885-4.645-3.514-5.546-10.134-2.040-14.778 3.523-4.653 10.15-5.562 14.795-2.040 111.665 84.697 195.682 71.918 265.634 53.305 9.355-2.499 18.719-5.145 28.066-7.782 47.514-13.459 96.166-27.238 141.771-18.547 18.522 3.539 36.545 10.781 53.772 23.282 47.342 34.316 46.719 83.255 35.447 117.596 43.844 56.222 28.033 204.038-93.839 286.499z" />
|
|
11
|
+
<glyph unicode="" glyph-name="mapicon_pig" horiz-adv-x="819" d="M744.603 509.563c-8.333 10-16.667 18.333-25.833 25.833 6.667 6.667 12.5 13.333 15.001 16.667 5.833 10.834 1.666 42.5-5 47.5-4.167 3.334-9.167-1.666-17.5-8.333 0 5.833-0.833 11.667-4.167 16.667-4.167 6.667-25-16.667-41.667-38.333-11.667 5-23.334 8.333-35 10-37.5 5-215.002 41.667-380.001 41.667-75.834 0-120.834-10-164.167-44.167-3.334-2.5-6.667-5.833-10-10.834-8.333-9.167-26.666-25.833-45.834-23.334-12.5 1.666-13.333 11.667-10 19.167 5 10 19.167 10 31.667 5 9.167-3.334 13.333 10.834-2.5 16.667-19.167 7.5-39.167 0-45.834-12.5-8.333-14.166-7.5-34.167 5.833-42.5 15.834-10 33.334-8.333 48.334-2.5-3.334-11.667-5.833-25-5.833-39.167-5-71.667 38.333-104.167 17.5-125.834-28.334-28.334 6.667-41.667 5-67.5-1.666-20.833-1.666-30 5-29.167 12.5 2.5 12.5 2.5 18.333-15.001 0.833-5.833 3.334-12.5 11.667-12.5h35c0 16.667-23.334 20.833-34.167 73.334-5.833 28.334 14.166 53.334 35.834 71.667 1.666-0.833 4.167-0.833 5.833-1.666-1.666-10.834-4.167-19.167 9.167-35.834 9.167-10.834 10-57.501 11.667-75.001 0.833-6.667 13.333 3.334 14.166-5 2.5-14.166 5-26.666 10-26.666h40.001c0 7.5-20 25-25.833 48.334-8.333 31.667-0.833 51.667 10 70.834l-20 9.167c-1.666 0.833-0.833 4.167 1.666 3.334 0 0 23.334-5.833 23.334-5.833 6.667-1.666 13.333-3.334 20.833-5.833h0.833c8.333-2.5 17.5-5 26.666-8.333 43.333-14.166 105.001-10 176.667 15.834 3.334-21.667 7.5-53.334 6.667-61.667-2.5-12.5-11.667-30.833 0-44.167 3.334-3.334 8.333 0.833 10-1.666 0-3.334 0.833-5.833 1.666-8.333 1.666-6.667 9.167-11.667 16.667-11.667h31.667c-10 20-17.5 20-20 38.333-4.167 26.666 4.167 62.5 18.333 88.334 12.5-35 25-77.501 21.667-85-4.167-7.5 0.833-25 10.834-17.5 3.334 2.5 5-4.167 5-11.667 0-5.833 5.833-13.333 10.834-13.333h38.333c-5 11.667-16.667 20-24.167 50.833-3.334 15.001-5.833 51.667 1.666 85 45.834 0 64.167 28.334 90.001 30.833 15.834 1.666 39.167 0.833 55 4.167 40.834 8.333 70.001 12.5 75.834 28.334 2.5 7.5 18.333 8.333 15.834 8.333v42.5c-29.167 0-45.834-8.333-72.5 22.5z" />
|
|
12
|
+
<glyph unicode="" glyph-name="mapicon_mouse" horiz-adv-x="1194" d="M1159.101 300.323c-14.366 43.098-38.309 81.407-71.83 114.927-6.385 6.385-9.577 14.366-4.789 23.943 9.577 25.539 9.577 52.675-7.981 75.022-15.962 17.559-36.713 23.943-59.060 19.155-33.521-7.981-38.309-33.521-41.502-62.252-62.252 0-159.621 111.735-378.303 63.848-140.467-30.327-263.375-145.255-244.221-300.089-6.385-15.962-14.366-30.327-30.327-39.905-28.732-19.155-75.022-25.539-108.543-20.75-49.482 6.385-89.388 28.732-119.716 67.041-49.482 62.252-49.482 135.678-30.327 205.912 51.079 188.353 193.142 276.145 332.012 394.265 17.559 15.962 14.366 30.327-7.981 17.559-150.044-86.196-319.243-225.066-370.321-395.862-49.482-159.621 17.559-300.089 183.564-338.398 73.426-4.789 83.003 1.596 150.044 30.327 12.77 6.385 27.136 9.577 41.502 7.981 15.962-28.732 173.987-59.060 210.7-57.464 22.347 0 84.6-25.539 100.562-41.502 4.789-3.193 9.577-4.789 15.962-6.385 9.577-4.789 23.943-1.596 27.136-12.77 4.789 14.366-12.77 15.962-22.347 22.347 25.539 3.193 9.577-3.193 30.327-7.981 6.385-1.596 17.559-6.385 19.155-12.77 4.789 14.366-4.789 14.366-15.962 31.925 3.193-3.193 7.981-6.385 11.173-9.577 3.193-4.789 6.385-7.981 11.173-7.981 9.577-1.596 11.173 0 11.173-11.173 3.193 6.385 3.193 6.385 3.193 12.77-4.789 9.577-4.789 6.385-6.385 9.577-4.789 4.789-7.981 4.789-9.577 9.577-4.789 11.173-7.981 11.173-19.155 15.962-15.962 4.789-36.713 17.559-35.116 17.559 59.060 1.596 110.139 7.981 169.198 14.366 1.596 0 23.943-22.347 23.943-23.943 6.385-9.577 14.366-15.962 25.539-19.155 17.559-3.193 25.539-11.173 33.521-25.539 1.596-3.193 6.385-9.577 12.77-6.385-1.596 1.596-1.596 3.193-3.193 4.789 3.193 7.981-9.577 14.366-12.77 22.347 7.981 1.596 25.539-11.173 27.136-15.962 1.596-3.193 11.173-4.789 12.77-3.193 3.193 1.596 3.193 0 4.789 1.596-3.193 1.596-3.193 1.596-4.789 3.193s-1.596 3.193-1.596 4.789c-3.193 4.789-6.385 9.577-9.577 14.366 0-1.596 11.173-7.981 12.77-9.577 1.596-3.193 7.981-4.789 12.77-6.385 11.173-1.596 9.577 3.193 12.77 3.193-4.789 1.596-3.193 0-4.789 1.596 0 1.596-4.789 1.596-4.789 3.193-4.789 9.577-11.173 14.366-19.155 19.155 6.385 3.193 7.981 1.596 11.173-6.385 6.385 4.789 3.193 14.366-4.789 17.559-6.385 1.596-19.155 3.193-22.347 3.193-7.981 0-38.309 20.75-39.905 27.136 38.309 3.193 73.426 15.962 110.139-1.596 15.962-9.577 33.521-19.155 51.079-23.943 22.347-6.385 33.521-1.596 49.482 11.173 15.962-6.385 27.136 4.789 28.732 19.155 1.596 22.347-23.943 126.101-35.116 156.429z" />
|
|
13
|
+
<glyph unicode="" glyph-name="mapicon_human" horiz-adv-x="819" d="M744.863 620.732c0 18.065 4.52 45.154 4.52 53.048 0 3.391-2.26 12.414-3.391 18.065 1.13 1.13 2.26 27.089-4.52 46.284-5.65 16.935-20.325 27.089-21.439 27.089-6.764 5.65-14.675 9.025-19.195 10.155-2.26 1.13-7.894 5.65-10.155 5.65-5.65 5.65-23.699 14.675-29.349 16.935-5.65 3.391-25.959 10.155-32.74 18.065v21.439c3.391 3.391 4.52 20.325 5.65 24.829 3.391-2.26 9.025 3.391 9.025 5.65 0 4.52 5.65 6.764 5.65 20.325 1.13 4.52 0 11.284-3.391 11.284s-6.764-2.26-6.764-2.26c0 4.52 2.26 16.935 2.26 23.699 0 5.65 1.13 38.374-44.024 38.374-46.284 0-44.024-32.74-44.024-38.374 0-6.764 2.26-19.195 2.26-23.699 0 0-4.52 2.26-6.764 2.26-3.391 0-5.65-6.764-3.391-11.284 0-14.675 5.65-15.805 5.65-20.325 0-2.26 5.65-9.025 9.025-5.65 1.13-4.52 3.391-21.439 5.65-24.829v-21.439c-6.764-7.894-27.089-14.675-32.74-18.065s-23.699-12.414-29.349-16.935c-2.26-1.13-7.894-4.52-10.155-5.65-4.52-1.13-12.414-4.52-19.195-10.155-1.13 0-15.805-10.155-21.439-27.089-6.764-19.195-5.65-45.154-4.52-46.284-1.13-5.65-3.391-15.805-3.391-18.065 0-7.894 4.52-34.983 4.52-53.048-2.26-7.894-7.894-27.089-4.52-47.414 3.391-19.195 10.155-74.503 11.284-92.551 0-9.025 1.13-16.935 4.52-24.829s7.894-24.829 7.894-31.61c0-4.52 1.13-10.155 3.391-13.544 2.26-4.52 2.26-14.675 7.894-21.439 2.26-2.26 16.935-14.675 25.959-19.195 4.52-31.61 12.414-65.463 25.959-84.657-2.26-9.025-2.26-27.089 0-38.374 1.13-9.025-3.391-41.763 0-50.788-1.13-6.764-5.65-31.61-5.65-45.154 0-42.894 22.569-93.682 31.61-124.161-2.26-5.65-5.65-21.439-1.13-30.479-3.391-2.26-6.764-10.155-7.894-12.414l-11.284-10.155c-2.26 0-6.764-3.391-5.65-7.894-2.26-2.26-3.391-10.155 5.65-11.284 2.26-1.13 9.025-1.13 10.155 0 2.26 0 7.894-1.13 10.155 0 3.391-1.13 11.284-2.26 14.675 0 3.391-1.13 14.675-3.391 20.325 3.391 2.26 1.13 2.26 4.52 3.391 5.65s1.13 13.544-1.13 16.935c0 0-2.26 3.391-1.13 5.65 1.13 4.52 0 11.284 0 14.675s3.391 10.155 3.391 12.414c0 4.52-7.894 14.675-9.025 24.829 1.13 14.675 4.52 56.438 4.52 64.332 2.26 5.65 5.65 21.439 5.65 29.349 0 11.284-9.025 54.179-9.025 65.463 3.391 7.894 7.894 25.959 7.894 40.633 0 3.391-2.26 25.959-2.26 28.219 2.26 5.65 0 53.048-1.13 66.593 1.13 5.65 6.764 44.024 6.764 58.698 0-14.675 5.65-53.048 6.764-58.698-2.26-12.414-3.391-59.829-1.13-66.593 0-1.13-2.26-24.829-2.26-28.219 0-14.675 4.52-33.87 7.894-40.633 0-11.284-9.025-54.179-9.025-65.463 0-7.894 3.391-23.699 5.65-29.349 0-7.894 3.391-49.658 4.52-64.332-2.26-10.155-9.025-20.325-9.025-24.829 0-2.26 3.391-9.025 3.391-12.414s-1.13-11.284 0-14.675c1.13-3.391-1.13-5.65-1.13-5.65-2.26-3.391-2.26-15.805-1.13-16.935s2.26-3.391 3.391-5.65c5.65-6.764 16.935-4.52 20.325-3.391 3.391-2.26 11.284-1.13 14.675 0 2.26-1.13 7.894 0 10.155 0 1.13-1.13 9.025-1.13 10.155 0 9.025 0 7.894 9.025 5.65 11.284 0 4.52-4.52 9.025-5.65 7.894l-11.284 10.155c-1.13 2.26-5.65 10.155-7.894 12.414 5.65 9.025 2.26 25.959-1.13 30.479 9.025 30.479 31.61 81.267 31.61 124.161 0 12.414-4.52 37.244-5.65 45.154 3.391 9.025-1.13 41.763 0 50.788 2.26 11.284 2.26 29.349 0 38.374 13.544 20.325 21.439 53.048 25.959 84.657 10.155 5.65 24.829 16.935 25.959 19.195 4.52 6.764 5.65 18.065 7.894 21.439 1.13 3.391 3.391 9.025 3.391 13.544 0 6.764 4.52 23.699 7.894 31.61 3.391 9.025 4.52 16.935 4.52 24.829 0 19.195 7.894 73.373 11.284 92.551-3.391 20.325-9.025 39.504-11.284 47.414zM504.447 498.832c-3.391-11.284-7.894-28.219-9.025-48.528-2.26 1.13-5.65 1.13-9.025 2.26-1.13 3.391 20.325 102.706 12.414 142.226-1.13 5.65-4.52 16.935-7.894 22.569 2.26 6.764 4.52 18.065 4.52 25.959 0-6.764 13.544-31.61 13.544-50.788 0-10.155-7.894-45.154 3.391-57.568-2.26-6.764-9.025-24.829-7.894-36.113zM695.2 450.288c0 21.439-5.65 37.244-9.025 48.528 2.26 11.284-5.65 29.349-6.764 34.983 10.155 13.544 3.391 47.414 3.391 57.568 0 20.325 13.544 44.024 13.544 50.788 0-7.894 2.26-19.195 4.52-25.959-3.391-5.65-6.764-18.065-7.894-22.569-7.894-39.504 12.414-138.836 12.414-142.226-5.65 0-7.894-1.13-10.155-1.13zM295.645 730.218c0 54.179-32.74 44.024-65.463 50.788s-27.089 47.414-27.089 48.528c1.13 2.26 3.391 4.52 4.52 9.025s2.26 10.155 3.391 12.414c2.26-1.13 4.52 0 4.52 2.26 1.13 2.26 1.13 7.894 2.26 10.155s10.155 16.935 4.52 19.195c-2.26 1.13-3.391-1.13-3.391-2.26 0 6.764 3.391 20.325-1.13 34.983-2.26 11.284-12.414 32.74-40.633 32.74-30.479 0-42.894-25.959-44.024-36.113-1.13-11.284 2.26-33.87 1.13-31.61-2.26 5.65-5.65 3.391-6.764 2.26s-2.26-2.26 1.13-9.025c2.26-4.52 4.52-11.284 4.52-12.414s1.13-9.025 5.65-9.025c2.26 0 4.52-4.52 5.65-7.894s2.26-12.414 6.764-13.544c0 0 6.764-41.763-25.959-48.528s-64.332 3.391-65.463-50.788c0-54.179 4.52-98.202-1.13-112.877-7.894-20.325-2.26-155.771-2.26-155.771s6.764-28.219 5.65-33.87c0-4.52-2.26-10.155-1.13-14.675 1.13-3.391 23.699-33.87 24.829-36.113 1.13-1.13 4.52-2.26 5.65-3.391 2.26-10.155 5.65-20.325 9.025-30.479 19.195-48.528 19.195-53.048 21.439-65.463 1.13-3.391 2.26-20.325 1.13-42.894-1.13-19.195-3.391-42.894-3.391-65.463 0-30.479 18.065-81.267 20.325-90.291 4.52-16.935 2.26-31.61 2.26-31.61l-1.13-14.675 1.13-2.26c0 0-3.391-13.544-3.391-15.805s2.26-12.414 0-18.065c-1.13-4.52-5.65-19.195-5.65-19.195l-3.391-4.52-1.13-7.894 2.26-2.26h3.391l2.26-5.65h6.764l2.26-3.391 3.391-1.13 2.26 1.13 3.391-2.26h2.26l6.764 1.13c0 0 4.52-2.26 6.764-2.26s4.52 2.26 4.52 2.26 0 1.13 1.13 3.391c0-2.26 1.13-3.391 1.13-3.391s2.26-2.26 4.52-2.26c2.26 0 6.764 2.26 6.764 2.26l6.764-1.13h2.26l3.391 2.26 2.26-1.13 3.391 1.13 2.26 3.391h6.764l2.26 5.65h3.391l2.26 2.26-1.13 7.894-3.391 4.52c0 0-4.52 14.675-5.65 19.195s0 15.805 0 18.065c0 2.26-3.391 15.805-3.391 15.805l1.13 2.26-1.13 14.675c0 0-2.26 14.675 2.26 31.61 2.26 7.894 20.325 59.829 20.325 90.291 0 23.699-2.26 46.284-3.391 65.463-1.13 22.569 1.13 39.504 1.13 42.894 2.26 12.414 2.26 15.805 21.439 65.463 3.391 10.155 6.764 20.325 9.025 30.479 1.13 0 4.52 2.26 5.65 3.391 1.13 2.26 23.699 32.74 24.829 36.113s0 9.025-1.13 14.675c0 4.52 5.65 33.87 5.65 33.87s5.65 135.445-2.26 155.771c-2.26 12.414 3.391 57.568 2.26 111.747zM112.785 560.904c-2.26-3.391-23.699-44.024-27.089-101.592-2.26 3.391-5.65 7.894-6.764 7.894-1.13 1.13 3.391 82.398 13.544 124.161 3.391 11.284 0 45.154 0 48.528 0 18.065 1.13 19.195 1.13 19.195s5.65-9.025 7.894-10.155c1.13 0 2.26-19.195 12.414-44.024 6.764-20.325 0-40.633-1.13-44.024zM172.614 422.085c1.13 3.391 5.65 2.26 5.65 2.26s4.52 1.13 5.65-2.26c1.13-3.391-7.894-48.528-5.65-100.462 2.26-34.983 1.13-66.593 1.13-69.982 0-6.764 2.26-31.61 2.26-39.504 0-5.65-3.391-27.089-4.52-44.024-1.13 18.065-4.52 38.374-4.52 44.024 0 7.894 2.26 32.74 2.26 39.504 0 2.26-1.13 34.983 1.13 69.982 4.52 51.918-5.65 97.072-3.391 100.462zM178.248-15.86c-2.26 6.764-4.52 14.675-2.26 19.195 1.13 1.13 1.13 3.391 2.26 4.52 1.13-1.13 1.13-2.26 2.26-4.52 2.26-4.52 0-12.414-2.26-19.195zM180.508 48.472c-2.26-3.391 1.13-16.935 1.13-16.935s-1.13-4.52-3.391-11.284c-2.26 5.65-3.391 11.284-3.391 11.284s2.26 13.544 1.13 16.935c-2.26 3.391-4.52 7.894-4.52 7.894s4.52 74.503 6.764 91.421c2.26-15.805 6.764-91.421 6.764-91.421s-3.391-3.391-4.52-7.894zM277.58 467.223c-1.13-1.13-4.52-4.52-6.764-7.894-4.52 58.698-24.829 98.202-27.089 101.592-1.13 2.26-7.894 23.699-1.13 42.894 9.025 24.829 11.284 44.024 12.414 44.024 2.26 0 7.894 10.155 7.894 10.155s1.13-1.13 1.13-19.195c0-2.26-2.26-36.113 0-48.528 10.155-40.633 14.675-121.901 13.544-123.031z" />
|
|
14
|
+
<glyph unicode="" glyph-name="mapicon_cat" horiz-adv-x="837" d="M495.2 956.4c-31.6-10.64-50.32-20.72-78.8-42.32-7.040-5.36-14.56-10.88-16.8-12.24-8.56-5.36-14.96-6.72-22-4.64-5.76 1.68-25.36 5.68-36 7.44-6.4 1.040-13.36 1.36-29.2 1.28-21.36 0-30.080-0.8-47.12-4.32-21.92-4.48-24.8-4.16-38.88 4.72-22 13.92-43.28 24.96-64 33.12-12.8 5.040-28.48 10.24-34.64 11.36-3.6 0.72-3.44 1.6-1.76-15.28 4.72-45.28 15.040-80.8 30.16-104.16 3.76-5.84 3.92-3.68-1.28-20.48-9.36-30.32-10.96-60.72-4.56-85.84 0.96-3.6 1.68-6.88 1.68-7.36 0-0.64-8-0.88-26.56-0.88-28.24 0-51.68-0.88-75.84-2.88-16-1.28-40-3.92-45.68-5.040-5.84-1.12-0.24-0.96 9.36 0.24 36.16 4.8 95.84 7.84 126.24 6.48l13.44-0.56 1.52-3.76c0.88-2 3.76-8.080 6.48-13.52 2.72-5.36 4.72-9.92 4.48-10.16s-7.36-1.28-15.92-2.4c-30.72-4-61.52-9.68-88.72-16.4-16.64-4.16-39.44-10.8-46-13.52-6.48-2.64-2.16-1.92 6.88 1.12 37.2 12.64 72.64 20 141.6 29.6 3.52 0.48 4.16 0 10.080-7.6 2.64-3.28 6.8-8.24 9.28-10.88 2.48-2.72 4.56-5.28 4.56-5.68s-4.24-2.32-9.36-4.24c-21.040-7.76-48.56-20.56-67.44-31.44-10.72-6.16-30.8-19.2-31.68-20.64-0.4-0.64 0.32-0.48 1.68 0.4 24.4 16 34.080 21.76 51.52 30.4 23.36 11.76 54.48 24.24 57.92 23.36 2.64-0.64 15.52-14.32 20.24-21.44 8.56-12.8 11.12-23.44 10.48-42.56-0.72-20.72-3.6-35.92-15.36-80-11.28-42.64-15.44-62.56-18.56-90.24-1.92-17.2-1.92-57.2 0-73.6 5.52-46.4 16.96-84.24 43.040-142.4 12.4-27.68 14.8-33.44 19.040-45.68 4.8-13.92 7.68-28.72 9.68-50.16 2.24-23.68 3.36-107.52 1.44-109.44-0.56-0.56-3.040-0.96-5.52-0.96-5.76 0-17.2-2-22.88-4-6.4-2.24-9.36-4.88-12.32-10.8-2.96-6-3.92-14.48-2.4-20.24 2.8-10.24 17.92-17.52 42.8-20.56 66.32-8.080 168.72-13.2 219.68-10.88 11.68 0.56 29.12 1.28 38.8 1.76 48.48 2.080 91.040 5.84 140.8 12.4 26.56 3.44 45.84 6.64 50.32 8.32 37.12 13.92 71.2 97.92 93.2 230 11.36 67.92 12.88 95.68 7.2 130-7.92 47.84-30.64 93.12-70.24 140-4.64 5.52-21.76 23.52-38.080 40-37.040 37.44-47.68 49.84-62.080 71.84-11.76 18-22.48 43.44-26 61.76-2.16 11.28-2 35.44 0.4 48.4 3.44 19.12 11.44 38.64 21.44 52.64 21.52 29.84 63.68 50.16 100.16 48.32 22.4-1.2 41.6-10 47.36-21.92 5.12-10.64-1.12-26.16-14.16-35.12-10.72-7.28-22-8.8-36.8-4.88-10.48 2.72-15.92 3.36-20.16 2.24-11.2-3.040-16.56-18.24-10.48-30.32 3.28-6.64 9.52-12.16 18.64-16.56 10.48-4.96 17.28-6.32 30.8-5.76 8.64 0.32 12.32 0.8 18.080 2.48 14.88 4.48 30.4 13.36 41.76 24 14.64 13.6 21.2 26.8 25.76 51.36 1.28 6.96 1.12 12.16-0.8 21.84-3.84 20-9.84 31.2-23.44 43.84-14.56 13.52-26.48 19.44-46.88 23.2-10.96 2-43.2 2-55.6 0-56.4-9.28-100.48-36.72-129.44-80.56-6.72-10.24-11.44-19.92-15.44-31.76-1.68-4.96-3.36-9.12-3.84-9.28s-5.52 0-11.28 0.4c-5.68 0.4-25.36 0.96-43.6 1.28-28.8 0.48-33.2 0.72-33.12 1.76 0.080 0.64 0.88 4.48 1.76 8.4 6.080 26.64 3.68 53.040-7.36 80.64l-3.44 8.64 3.12 4.56c17.52 25.12 26.8 43.84 32.56 65.76 4.8 18.32 5.28 22.4 5.2 46.4 0 12.080-0.4 22.96-0.8 24.080l-0.72 2.080-7.6-2.56zM546.32 714.4c7.6-0.48 13.44-1.2 13.68-1.68 0.32-0.48 0.080-2.88-0.48-5.36-1.68-6.96-4.32-25.68-4.32-30.4 0-5.040-1.12-7.6-3.040-7.040-8.8 2.8-56.56 11.6-78.56 14.48-12.96 1.68-13.6 1.84-13.6 3.12 0 0.56 1.76 4.8 3.84 9.36 2.16 4.56 4.72 10.56 5.68 13.28 1.84 4.88 1.92 4.96 5.2 5.36 5.2 0.56 57.12-0.24 71.6-1.12zM480 682.4c20.64-3.040 43.76-7.2 60.8-11.040l13.2-2.96 0.16-4.8c2.24-57.040 12.64-88.4 46.080-138.8 22.16-33.36 45.2-60.56 91.36-108 21.28-21.84 30.16-33.2 41.12-52.24 18-31.28 25.92-65.52 24.56-106.16-2.32-67.2-17.76-137.84-42.080-192.56-10.96-24.8-20.8-38.72-30.8-43.44-7.76-3.76-17.44-2.16-22.88 3.76-7.92 8.48-8.080 18.64-1.2 76.16 6.24 52.24 7.12 64.72 6.56 90.080-0.24 11.44-0.8 23.84-1.28 27.6-4.8 39.12-15.44 72-37.6 115.84-25.68 50.96-43.44 75.44-85.2 117.36-23.76 23.92-39.68 38.56-64.24 58.96-37.52 31.28-44.56 39.44-52 60.64-4.32 12.4-6.080 23.6-6.16 38.4 0 11.68 0.24 13.76 1.84 18.48 2.64 7.68 13.68 24.96 16.72 26.080 2.24 0.88 31.84-11.68 51.2-21.76 14-7.36 26.56-14.8 38.88-22.96 5.12-3.44 9.36-5.92 9.36-5.52 0 0.96-22.4 15.44-34.4 22.24-17.6 9.92-39.76 20.4-56.24 26.64-5.12 2-6.96 3.040-6.8 3.92 0.16 0.72 4 6.96 8.64 13.84 8.16 12.24 8.48 12.64 11.2 12.64 1.52 0 10.16-1.040 19.2-2.4z" />
|
|
15
15
|
</font></defs></svg>
|
|
File without changes
|
|
File without changes
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: 'mapicon-species';
|
|
3
|
-
src: url('fonts/mapicon-species.eot?h40clo');
|
|
4
|
-
src: url('fonts/mapicon-species.eot?h40clo#iefix') format('embedded-opentype'),
|
|
5
|
-
url('fonts/mapicon-species.ttf?h40clo') format('truetype'),
|
|
6
|
-
url('fonts/mapicon-species.woff?h40clo') format('woff'),
|
|
7
|
-
url('fonts/mapicon-species.svg?h40clo#mapicon-species') format('svg');
|
|
8
|
-
font-weight: normal;
|
|
9
|
-
font-style: normal;
|
|
10
|
-
font-display: block;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
[class^="mapicon-icon"], [class*=" mapicon-icon"] {
|
|
14
|
-
/* use !important to prevent issues with browser extensions that change fonts */
|
|
15
|
-
font-family: 'mapicon-species' !important;
|
|
16
|
-
speak: never;
|
|
17
|
-
font-style: normal;
|
|
18
|
-
font-weight: normal;
|
|
19
|
-
font-variant: normal;
|
|
20
|
-
text-transform: none;
|
|
21
|
-
line-height: 1;
|
|
22
|
-
|
|
23
|
-
/* Better Font Rendering =========== */
|
|
24
|
-
-webkit-font-smoothing: antialiased;
|
|
25
|
-
-moz-osx-font-smoothing: grayscale;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.mapicon-icon_cat:before {
|
|
29
|
-
content: "\e904";
|
|
30
|
-
}
|
|
31
|
-
.mapicon-icon_rat:before {
|
|
32
|
-
content: "\e900";
|
|
33
|
-
}
|
|
34
|
-
.mapicon-icon_pig:before {
|
|
35
|
-
content: "\e901";
|
|
36
|
-
}
|
|
37
|
-
.mapicon-icon_mouse:before {
|
|
38
|
-
content: "\e902";
|
|
39
|
-
}
|
|
40
|
-
.mapicon-icon_human:before {
|
|
41
|
-
content: "\e903";
|
|
42
|
-
}
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'mapicon-species';
|
|
3
|
+
src: url('fonts/mapicon-species.eot?h40clo');
|
|
4
|
+
src: url('fonts/mapicon-species.eot?h40clo#iefix') format('embedded-opentype'),
|
|
5
|
+
url('fonts/mapicon-species.ttf?h40clo') format('truetype'),
|
|
6
|
+
url('fonts/mapicon-species.woff?h40clo') format('woff'),
|
|
7
|
+
url('fonts/mapicon-species.svg?h40clo#mapicon-species') format('svg');
|
|
8
|
+
font-weight: normal;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
font-display: block;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
[class^="mapicon-icon"], [class*=" mapicon-icon"] {
|
|
14
|
+
/* use !important to prevent issues with browser extensions that change fonts */
|
|
15
|
+
font-family: 'mapicon-species' !important;
|
|
16
|
+
speak: never;
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-weight: normal;
|
|
19
|
+
font-variant: normal;
|
|
20
|
+
text-transform: none;
|
|
21
|
+
line-height: 1;
|
|
22
|
+
|
|
23
|
+
/* Better Font Rendering =========== */
|
|
24
|
+
-webkit-font-smoothing: antialiased;
|
|
25
|
+
-moz-osx-font-smoothing: grayscale;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.mapicon-icon_cat:before {
|
|
29
|
+
content: "\e904";
|
|
30
|
+
}
|
|
31
|
+
.mapicon-icon_rat:before {
|
|
32
|
+
content: "\e900";
|
|
33
|
+
}
|
|
34
|
+
.mapicon-icon_pig:before {
|
|
35
|
+
content: "\e901";
|
|
36
|
+
}
|
|
37
|
+
.mapicon-icon_mouse:before {
|
|
38
|
+
content: "\e902";
|
|
39
|
+
}
|
|
40
|
+
.mapicon-icon_human:before {
|
|
41
|
+
content: "\e903";
|
|
42
|
+
}
|