Merge branch 'master' of gitlab.navinfo.com:CollectVehicle/OneMapQS

 Conflicts:
	vtm
This commit is contained in:
squallzhjch 2023-09-01 17:21:18 +08:00
commit 34977af660
66 changed files with 1058 additions and 73 deletions

View File

@ -46,6 +46,7 @@
"name": "道路种别",
"zoomMin": 15,
"zoomMax": 20,
"catch":false,
"checkLinkId": false
},
"2010": {
@ -173,7 +174,7 @@
"name": "文字",
"zoomMin": 15,
"zoomMax": 20,
"transformer2Code": ""
"transformer": []
},
"3003":{
"table": "OMDB_OBJECT_SYMBOL",
@ -181,7 +182,22 @@
"name": "符号",
"zoomMin": 15,
"zoomMax": 20,
"transformer2Code": ""
"transformer": []
},
"3004":{
"table": "OMDB_OBJECT_ARROW",
"code": 3004,
"name": "箭头",
"zoomMin": 15,
"zoomMax": 20,
"transformer": [
{
"k": "geometry",
"v": "~",
"klib": "geometry",
"vlib": "obtainDynamicSrc('assets:omdb/arrowDirection/','.svg','arrowClass')"
}
]
},
"3005":{
"table": "OMDB_TRAFFIC_SIGN",
@ -472,6 +488,7 @@
"name": "车道中心线",
"zoomMin": 18,
"zoomMax": 20,
"catch":false,
"transformer": [
{
"k": "geometry",

View File

@ -122,6 +122,7 @@ class TableInfo {
val zoomMin: Int = 16
val zoomMax: Int = 21
val checkLinkId: Boolean = true//是否需要校验linkid
val catch: Boolean = true//是否需要捕捉
val name: String = ""
var checked : Boolean = true
var transformer: MutableList<Transform> = mutableListOf()

View File

@ -229,6 +229,7 @@ class ImportOMDBHelper @AssistedInject constructor(
if (!renderEntity.properties.containsKey("name")) {
renderEntity.properties["name"] = renderEntity.name;
}
//遍历判断只显示与任务Link相关的任务数据
if(currentConfig.checkLinkId){
@ -307,6 +308,12 @@ class ImportOMDBHelper @AssistedInject constructor(
// 对renderEntity做预处理后再保存
val resultEntity = importConfig.transformProperties(renderEntity)
if(currentConfig.catch){
renderEntity.catchEnable=0
}else{
renderEntity.catchEnable=1
}
//对code编码需要特殊处理 存在多个属性值时渲染优先级SA>PA,存在多个属性值时渲染优先级FRONTAGE>MAIN_SIDE_A CCESS
if(renderEntity.code == DataCodeEnum.OMDB_LINK_ATTRIBUTE.code){

View File

@ -610,26 +610,28 @@ class ImportPreProcess {
// 获取杆状物的高程数据
val geometry = renderEntity.wkt
if (geometry != null) {
var minHeight = Double.MAX_VALUE
var maxHeight = Double.MIN_VALUE
for (coordinate in geometry.coordinates) {
if (coordinate.z < minHeight) {
minHeight = coordinate.z
}
if (coordinate.z > maxHeight) {
maxHeight = coordinate.z
}
}
for (coordinate in geometry.coordinates) {
if (coordinate.z == minHeight) {
coordinate.z = 0.0
}
if (coordinate.z == maxHeight) {
coordinate.z = 40.0
}
}
renderEntity.geometry =
WKTWriter(3).write(GeometryTools.createLineString(geometry.coordinates))
// var minHeight = Double.MAX_VALUE
// var maxHeight = Double.MIN_VALUE
// for (coordinate in geometry.coordinates) {
// if (coordinate.z < minHeight) {
// minHeight = coordinate.z
// }
// if (coordinate.z > maxHeight) {
// maxHeight = coordinate.z
// }
// }
// for (coordinate in geometry.coordinates) {
// if (coordinate.z == minHeight) {
// coordinate.z = 0.0
// }
// if (coordinate.z == maxHeight) {
// coordinate.z = 40.0
// }
// }
// renderEntity.geometry =
// WKTWriter(3).write(GeometryTools.createLineString(geometry.coordinates))
renderEntity.geometry = GeometryTools.createGeometry(GeoPoint(geometry.coordinates[0].y, geometry.coordinates[0].x)).toString()
}
}
@ -741,4 +743,12 @@ class ImportPreProcess {
Realm.getDefaultInstance().insert(dynamicSrcReference)
}
}
/**
* 向当前renderEntity中添加动态属性
* */
fun obtainDynamicSrc(renderEntity: RenderEntity, prefix: String, suffix: String, codeName: String) {
val code = renderEntity.properties[codeName]
renderEntity.properties["src"] = "${prefix}${code}${suffix}"
}
}

View File

@ -244,6 +244,7 @@ class RealmOperateHelper() {
point: Point,
buffer: Double = DEFAULT_BUFFER,
bufferType: BUFFER_TYPE = DEFAULT_BUFFER_TYPE,
catchAll: Boolean = true,
sort: Boolean = true
): MutableList<RenderEntity> {
val result = mutableListOf<RenderEntity>()
@ -261,14 +262,25 @@ class RealmOperateHelper() {
val yStart = tileYSet.stream().min(Comparator.naturalOrder()).orElse(null)
val yEnd = tileYSet.stream().max(Comparator.naturalOrder()).orElse(null)
val realm = getRealmDefaultInstance()
// 查询realm中对应tile号的数据
val realmList = getRealmTools(RenderEntity::class.java, false)
.notEqualTo("table", DataCodeEnum.OMDB_RD_LINK.name)
.greaterThanOrEqualTo("tileX", xStart)
.lessThanOrEqualTo("tileX", xEnd)
.greaterThanOrEqualTo("tileY", yStart)
.lessThanOrEqualTo("tileY", yEnd)
.findAll()
var realmList = mutableListOf<RenderEntity>()
if(catchAll){
// 查询realm中对应tile号的数据
realmList = getRealmTools(RenderEntity::class.java, false)
.greaterThanOrEqualTo("tileX", xStart)
.lessThanOrEqualTo("tileX", xEnd)
.greaterThanOrEqualTo("tileY", yStart)
.lessThanOrEqualTo("tileY", yEnd)
.findAll()
}else{
// 查询realm中对应tile号的数据
realmList = getRealmTools(RenderEntity::class.java, false)
.lessThan("catchEnable", 1)
.greaterThanOrEqualTo("tileX", xStart)
.lessThanOrEqualTo("tileX", xEnd)
.greaterThanOrEqualTo("tileY", yStart)
.lessThanOrEqualTo("tileY", yEnd)
.findAll()
}
// 将获取到的数据和查询的polygon做相交只返回相交的数据
val queryResult = realmList?.stream()?.filter {
polygon.intersects(it.wkt)

View File

@ -471,11 +471,11 @@ class MainViewModel @Inject constructor(
private suspend fun captureItem(point: GeoPoint) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
val itemList = realmOperateHelper.queryElement(
point = GeometryTools.createPoint(
GeometryTools.createPoint(
point.longitude,
point.latitude
),
buffer = 2.0
buffer = 1.0, catchAll = false
)
if (itemList.size == 1) {

View File

@ -23,6 +23,7 @@ class ItemAdapter(private var itemListener: ((Int, RenderEntity) -> Unit?)? = nu
val binding = holder.viewBinding as AdapterItemBinding
var renderEntity = data[position]
binding.root.isSelected = selectPosition == position
binding.itemIndex.text = (position+1).toString()
binding.name.text = DataCodeEnum.findTableNameByCode(renderEntity.code)
binding.root.setOnClickListener {
if (selectPosition != position) {

View File

@ -129,7 +129,7 @@ class PersonalCenterFragment(private var indoorDataListener: ((Boolean) -> Unit?
// 定位到指定位置
niMapController.mMapView.vtmMap.animator()
// .animateTo(GeoPoint( 40.05108004733645, 116.29187746293708 ))
.animateTo(GeoPoint( 40.480633792652746, 115.99816629572948 ))
.animateTo(GeoPoint( 40.50755634913162,115.80235967728436 ))
}
R.id.personal_center_menu_open_all_layer -> {
MapParamUtils.setDataLayerEnum(DataLayerEnum.SHOW_ALL_LAYERS)

View File

@ -1,16 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/selector_adapter_item_select_bg"
android:padding="5dp">
android:padding="10dp">
<TextView
android:id="@+id/item_index"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@mipmap/marker2"
android:maxLength="3"
android:text=""
android:layout_marginRight="@dimen/default_widget_padding"
style="@style/content_font_default_size_13sp" />
<TextView
android:id="@+id/name"
android:layout_toRightOf="@id/item_index"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="name"
android:textColor="@color/selector_black_blue_color"
android:textSize="16sp" />
</FrameLayout>
</RelativeLayout>

View File

@ -1948,16 +1948,19 @@
</m>
</m>
<!-- 杆状物 -->
<m v="OMDB_POLE">
<line stroke="#000000" width="2" cap="butt"></line>
<!-- <line stroke="#000000" width="2" cap="butt"></line>-->
<symbol src="assets:omdb/icon_pole_3006.svg" symbol-height="56" symbol-width="56"></symbol>
</m>
<m v="OMDB_TRAFFIC_SIGN">
<area use="sign-bg" repeat="false" stroke="#ff0000" stroke-width="2"></area>
<m k="type" v="angle">
<line stroke="#00ff00" width="0.1"></line>
</m>
</m>
<!-- 交通标牌 -->
<!-- <m v="OMDB_TRAFFIC_SIGN">-->
<!-- <area use="sign-bg" repeat="false" stroke="#ff0000" stroke-width="2"></area>-->
<!-- <m k="type" v="angle">-->
<!-- <line stroke="#00ff00" width="0.1"></line>-->
<!-- </m>-->
<!-- </m>-->
<m v="OMDB_AREA">
<!-- <area use="sign-bg" repeat="false" src="assets:omdb/veer_side_walk.jpg" stroke="#ff0000" stroke-width="2"></area>
@ -1968,12 +1971,9 @@
<m k="type" v="node">
<symbol src="assets:symbols/dot_blue_dark.svg"></symbol>
</m>
<!-- <m k="intersectionPid">
<m k="intersectionPid">
<symbol src="assets:symbols/dot_magenta.svg"></symbol>
</m>-->
<!-- <m k="geometry">
<symbol src="@typesrc"></symbol>
</m>-->
</m>
</m>
<!--车道中心线-->
@ -2326,22 +2326,38 @@
<!-- 导流区 -->
<m v="OMDB_FILL_AREA">
<area use="obj-area" repeat="true" src="assets:omdb/tex_fill_area_3012.png" longEdge="t"></area>
<!-- <text use="area-name"></text>-->
<!-- <area use="obj-area" repeat="false"></area>-->
<!-- <symbol src="assets:omdb/icon_fill_area_3012.svg"></symbol>-->
</m>
<!-- 文字 -->
<m v="OMDB_OBJECT_TEXT">
<area use="obj-area" repeat="false" src="@text-src:textString" longEdge="t" hasDirect="true"></area>
<area use="obj-area" stroke="#00000000" repeat="false" src="@text-src:textString" longEdge="t" hasDirect="true"></area>
</m>
<!-- 符号 -->
<m v="OMDB_OBJECT_SYMBOL">
<area use="obj-area" repeat="false" src="assets:omdb/tex_fill_area_3012.png" longEdge="t" hasDirect="true"></area>
<m k="color" v="1">
<area use="obj-area" stroke="#00000000" repeat="false" src="assets:omdb/object_symbol_3003_1.svg" longEdge="t" hasDirect="true"></area>
</m>
<m k="color" v="2">
<area use="obj-area" stroke="#00000000" repeat="false" src="assets:omdb/object_symbol_3003_2.svg" longEdge="t" hasDirect="true"></area>
</m>
<m k="color" v="3">
<area use="obj-area" stroke="#00000000" repeat="false" src="assets:omdb/object_symbol_3003_3.svg" longEdge="t" hasDirect="true"></area>
</m>
<m k="color" v="4">
<area use="obj-area" stroke="#00000000" repeat="false" src="assets:omdb/object_symbol_3003_4.svg" longEdge="t" hasDirect="true"></area>
</m>
<m k="color" v="9">
<area use="obj-area" stroke="#00000000" repeat="false" src="assets:omdb/object_symbol_3003_9.svg" longEdge="t" hasDirect="true"></area>
</m>
</m>
<!-- 人行横道 -->
<m v="OMDB_CROSS_WALK">
<area use="obj-area" stroke="#00000000" repeat="true" src="assets:omdb/tex_fill_area_3014_3.png" longEdge="s"></area>
<area use="obj-area" stroke="#00000000" repeat="true" src="assets:omdb/object_crosswalk_3014.svg" longEdge="s"></area>
</m>
<!-- 箭头 -->
<m v="OMDB_OBJECT_ARROW">
<area use="obj-area" stroke="#00000000" repeat="false" src="@src" longEdge="n" hasDirect="true"></area>
</m>
<!-- 道路施工 -->

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="30px" viewBox="0 0 16 30" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>18</title>
<desc>Created with Sketch.</desc>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1600.000000, -764.000000)" stroke="#CBCBCB">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="18" transform="translate(218.000000, 149.000000)">
<rect id="矩形" stroke-width="1.6" x="0.8" y="0.8" width="14.4" height="28.4" rx="2"></rect>
<text id="其-它" stroke-width="1.2" font-family="PingFangSC-Semibold, PingFang SC" font-size="10" font-weight="500" line-spacing="13" letter-spacing="-0.150000006" fill="#FFFFFF">
<tspan x="3" y="13"></tspan>
<tspan x="3" y="26"></tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="11px" height="29px" viewBox="0 0 11 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>1</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.383 0.5643 10.603 0.5643 10.603 29 0.383 29"></polygon>
</defs>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1387.000000, -616.000000)">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="1" transform="translate(5.000000, 0.000000)">
<g id="编组" transform="translate(0.000000, 0.436000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-4"></g>
<polygon id="Fill-3" fill="#FFFFFF" mask="url(#mask-2)" points="6.677 29.0003 6.651 4.3433 10.536 7.4933 10.603 4.6013 5.553 0.5643 0.383 4.5953 0.461 7.6733 4.585 4.1653 4.599 28.9983"></polygon>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="29px" viewBox="0 0 24 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>16</title>
<desc>Created with Sketch.</desc>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1460.000000, -763.000000)" fill="#FFFFFF">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="16" transform="translate(78.000000, 147.000000)">
<g id="编组复制-27">
<polygon id="Fill-1" points="11.0061 7.3645 10.9781 29.2045 13.3411 29.2125 13.3601 7.2255"></polygon>
<g id="编组" transform="translate(0.000000, 0.212000)">
<path d="M11.1419,6.9521 C11.2879,6.5281 12.6949,5.3741 13.7769,4.8721 C14.8589,4.3701 16.7669,4.4241 16.7669,4.4241 L19.8759,4.4361 L16.9199,0.8521 L19.5879,0.7881 L23.3159,5.4501 L19.5939,10.2231 L16.7529,10.1521 L19.9899,6.3461 L16.5529,6.3281 C16.5529,6.3281 14.8769,6.3221 13.7109,7.1411 C12.5449,7.9611 12.2499,9.6071 12.2439,10.0061 C12.2339,10.8041 10.8439,7.7981 11.1419,6.9521" id="Fill-4"></path>
<path d="M13.033,17.6533 C12.758,12.1303 3.798,12.1213 3.902,17.7733 L3.926,25.9723 L0.309,22.7813 L0.24,24.9083 L5.022,28.9303 L9.587,24.9343 L9.593,22.6003 L5.988,25.8763 L6.006,18.1883 C6.091,14.4813 10.917,14.6183 11.11,18.0903 L13.033,17.6533 Z" id="Fill-6"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="21px" height="35px" viewBox="0 0 21 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>7</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1646.000000, -573.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="7" transform="translate(449.800000, 0.000000)">
<g id="编组复制-43复制复制复制复制复制" transform="translate(9.843211, 7.500000)">
<polygon id="Fill-2" points="0.161052941 0.633375 5.8397 2.478375 6.92305294 4.504625 6.18064118 10.064625 9.77164118 1.288375"></polygon>
</g>
<path d="M3.90228218,34.4425 L6.47169394,34.4225 C5.94836646,24.2849469 6.29666039,24.9435235 7.51657573,21.39823 C8.73649105,17.8529364 11.8197207,14.7217348 16.7662645,12.004625 L15.6829116,9.978375 C10.0325938,13.1814353 6.53395264,16.6103103 5.18698805,20.265 C3.84002347,23.9196896 3.41178818,23.645523 3.90228218,34.4425 Z" id="路径-10复制-5"></path>
<polygon id="Fill-1复制-12" points="5.48594118 0 3.05355741e-12 6.41224396 4.263 4.28331984 4.263 33.75 6.17647059 33.75 6.53594118 4.28331984 11.0941765 6.54765257 11.1806471 3.03331984 11.0941765 6.54765257"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="23px" height="35px" viewBox="0 0 23 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>4</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1435.000000, -573.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="4" transform="translate(238.400000, 0.000000)">
<g id="编组复制-43复制复制复制" transform="translate(6.034325, 0.000000)">
<polygon id="Fill-2" points="0.137773684 0.633375 5.70256316 2.478375 6.76419474 4.504625 6.03666842 10.064625 9.55566842 1.288375"></polygon>
</g>
<path d="M0.192461982,34.4425 L2.71035672,34.4225 C2.19752202,24.2849469 2.53883262,17.4435235 3.7342885,13.89823 C4.92974437,10.3529364 7.95115484,7.22173479 12.7985198,4.504625 L11.7368883,2.478375 C6.19986011,5.68143535 2.77136712,9.11031035 1.45140935,12.765 C0.131451575,16.4196896 -0.288197548,23.645523 0.192461982,34.4425 Z" id="路径-10复制-3"></path>
<polygon id="Fill-1复制-8" transform="translate(11.692219, 15.613125) rotate(-270.000000) translate(-11.692219, -15.613125) " points="11.6303445 5.32365132 6.14284447 11.5334034 6.07909447 11.5334034 10.3928445 9.47170843 10.3928445 25.9025987 12.6928445 25.8710297 12.6928445 9.47170843 17.3053445 11.6645359 17.3053445 11.5334034"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="27px" height="35px" viewBox="0 0 27 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>5</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1503.000000, -573.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="5" transform="translate(306.200000, 0.000000)">
<g id="编组复制-43复制复制复制复制" transform="translate(9.785788, 7.500000)">
<polygon id="Fill-2" points="0.153513636 0.633375 5.79528636 2.478375 6.87160455 4.504625 6.13401364 10.064625 9.70169545 1.288375"></polygon>
</g>
<path d="M3.87694268,34.4425 L6.42966995,34.4225 C5.90974071,24.2849469 6.25577299,24.9435235 7.4677668,21.39823 C8.67976059,17.8529364 11.7429692,14.7217348 16.6573926,12.004625 L15.5810745,9.978375 C9.96744711,13.1814353 6.49152437,16.6103103 5.15330631,20.265 C3.81508826,23.9196896 3.38963371,23.645523 3.87694268,34.4425 Z" id="路径-10复制-4"></path>
<polygon id="Fill-1复制-9" transform="translate(15.535788, 21.863125) rotate(-270.000000) translate(-15.535788, -21.863125) " points="15.4739127 11.4313068 9.98641273 17.7269645 9.92266273 17.7269645 14.2364127 15.6367481 14.2364127 32.2949432 16.5364127 32.2629375 16.5364127 15.6367481 21.1489127 17.8599112 21.1489127 17.7269645"></polygon>
<polygon id="Fill-1复制-10" points="5.45031818 0 3.05355741e-12 6.41224396 4.23531818 4.28331984 4.23531818 33.75 6.13636364 33.75 6.4935 4.28331984 11.0221364 6.54765257 11.1080455 3.03331984 11.0221364 6.54765257"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="35px" height="35px" viewBox="0 0 35 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>2</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1269.000000, -573.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="2" transform="translate(71.800000, 0.000000)">
<g id="编组复制-43" transform="translate(24.815793, 0.000000)">
<polygon id="Fill-2" points="0.166772414 0.633375 5.8733931 2.478375 6.96208276 4.504625 6.21601379 10.064625 9.82470345 1.288375"></polygon>
</g>
<path d="M18.8505246,34.4425 L21.4325935,34.4225 C20.9066881,24.2849469 21.2566977,17.4435235 22.4826225,13.89823 C23.7085473,10.3529364 26.8069652,7.22173479 31.7778762,4.504625 L30.6891866,2.478375 C25.0110348,5.68143535 21.4951589,9.11031035 20.141559,12.765 C18.7879592,16.4196896 18.3576143,23.645523 18.8505246,34.4425 Z" id="路径-10"></path>
<polygon id="Fill-1复制" transform="translate(10.781310, 15.613125) rotate(-90.000000) translate(-10.781310, -15.613125) " points="10.7194353 5.06140086 5.23193534 11.4294225 5.16818534 11.4294225 9.48193534 9.31518057 9.48193534 26.1648491 11.7819353 26.1324756 11.7819353 9.31518057 16.3944353 11.5638972 16.3944353 11.4294225"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="35px" height="35px" viewBox="0 0 35 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>15</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1419.000000, -674.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="15" transform="translate(222.088437, 101.000000)">
<g id="编组复制-43复制复制复制复制复制复制复制" transform="translate(24.850791, 7.500000)">
<polygon id="Fill-2" points="0.15921 0.633375 5.82884333 2.478375 6.91047667 4.504625 6.16924333 10.064625 9.75454333 1.288375"></polygon>
</g>
<path d="M18.9177047,34.4425 L21.4830381,34.4225 C20.9605413,24.2849469 21.3082824,24.9435235 22.5262613,21.39823 C23.7442403,17.8529364 26.8225759,14.7217348 31.761268,12.004625 L30.6796347,9.978375 C25.0382857,13.1814353 21.545198,16.6103103 20.2003714,20.265 C18.8555449,23.9196896 18.4279893,23.645523 18.9177047,34.4425 Z" id="路径-10复制-7"></path>
<polygon id="Fill-1复制-16" transform="translate(10.704950, 20.613125) rotate(-90.000000) translate(-10.704950, -20.613125) " points="10.643075 10.1297917 5.155575 16.456539 5.091825 16.456539 9.405575 14.3560006 9.405575 31.0964583 11.705575 31.0642946 11.705575 14.3560006 16.318075 16.5901422 16.318075 16.456539"></polygon>
<polygon id="Fill-1复制-17" transform="translate(20.123116, 17.500000) rotate(-360.000000) translate(-20.123116, -17.500000) " points="20.0620662 -3.83693077e-12 14.6477329 6.41224396 14.5848329 6.41224396 18.8410662 4.28331984 18.8410662 35 21.1103995 34.9674016 21.1103995 4.28331984 25.6613995 6.54765257 25.6613995 6.41224396"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="30px" height="35px" viewBox="0 0 30 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>13</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1270.000000, -674.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="13" transform="translate(73.088437, 101.000000)">
<g id="编组复制-43" transform="translate(19.651875, 0.000000)">
<polygon id="Fill-2" points="0.174875 0.633375 5.921125 2.478375 7.017375 4.504625 6.266125 10.064625 9.899875 1.288375"></polygon>
</g>
<path d="M13.6521254,34.4425 L16.2521254,34.4225 C15.7225678,24.2849469 16.0750081,17.4435235 17.3094463,13.89823 C18.5438844,10.3529364 21.6638191,7.22173479 26.6692504,4.504625 L25.5730004,2.478375 C19.855417,5.68143535 16.3151253,9.11031035 14.9521254,12.765 C13.5891255,16.4196896 13.1557922,23.645523 13.6521254,34.4425 Z" id="路径-10"></path>
<path d="M15.905,18.9134105 C15.56125,12.0096605 4.36125,11.9984105 4.49125,19.0634105 L4.52125,29.3121605 L9.91207116e-13,25.3234105 L5.89125,33.0096605 L11.605,25.0971605 L7.09875,29.1921605 L7.12125,19.5821605 C7.2275,14.9484105 13.26,15.1196605 13.50125,19.4596605 L15.905,18.9134105 Z" id="Fill-6复制"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="26px" height="29px" viewBox="0 0 26 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>13</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.450062354 0.241 12.478 0.241 12.478 9.36 0.450062354 9.36"></polygon>
<polygon id="path-3" points="0.383 0.5643 10.603 0.5643 10.603 29 0.383 29"></polygon>
</defs>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1748.000000, -701.000000)">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="13" transform="translate(366.000000, 85.000000)">
<g id="编组复制-35" transform="translate(13.000000, 10.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-6"></g>
<path d="M0.5871,5.957 C0.7311,5.547 1.8451,4.675 2.8921,4.189 C3.9381,3.703 6.1451,3.756 6.1451,3.756 L9.1541,3.768 L6.2961,0.303 L8.8761,0.241 L12.4781,4.747 L8.8811,9.36 L6.1361,9.291 L9.2651,5.612 L5.9441,5.596 C5.9441,5.596 4.0821,5.346 2.9531,6.138 C1.8261,6.93 0.5691,8.279 0.5631,8.665 C0.5511,9.437 0.3001,6.775 0.5871,5.957" id="Fill-5" fill="#FFFFFF" mask="url(#mask-2)"></path>
</g>
<g id="编组复制-34">
<path d="M13.4651,17.3904 C13.1941,12.0004 3.4731,11.9914 3.5741,17.5064 L3.5981,23.0574 L0.0651,19.9424 L0.0001,22.0184 L4.6671,25.9444 L9.1241,22.0434 L9.1301,19.7664 L5.6091,22.9614 L5.6281,17.9114 C5.7111,14.2944 11.3991,14.4274 11.5901,17.8164 L13.4651,17.3904 Z" id="Fill-1" fill="#FFFFFF"></path>
<g id="编组" transform="translate(7.000000, 0.436000)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-4"></g>
<polygon id="Fill-3" fill="#FFFFFF" mask="url(#mask-4)" points="6.677 29.0003 6.651 4.3433 10.536 7.4933 10.603 4.6013 5.553 0.5643 0.383 4.5953 0.461 7.6733 4.585 4.1653 4.599 28.9983"></polygon>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="14px" height="29px" viewBox="0 0 14 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>8</title>
<desc>Created with Sketch.</desc>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1385.000000, -695.000000)" fill="#FFFFFF">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="8" transform="translate(3.000000, 79.000000)">
<polygon id="Fill-1" points="11.0061 7.3645 10.9781 29.2045 13.3411 29.2125 13.3601 7.2255"></polygon>
<g id="编组" transform="translate(0.000000, 0.212000)">
<path d="M13.3601,7.0135 C13.2759008,6.77063983 12.7380706,6.13316763 12.0731,5.65380201 C11.5771246,5.29626209 11.0013483,5.08656272 10.5391,4.8721 C9.4571,4.3701 7.5501,4.4241 7.5501,4.4241 L4.4411,4.4361 L7.3961,0.8521 L4.7281,0.7881 L1.0001,5.4501 L4.7211,10.2231 L7.5631,10.1511 L4.3261,6.3451 L7.7621,6.3281 C7.7621,6.3281 9.4401,6.3221 10.6061,7.1411 C11.7721,7.9611 12.0661,9.6071 12.0731,10.0061 C12.0811,10.8041 13.5765637,8.02668382 13.2805637,7.18068382 L13.3601,7.0135 Z" id="Fill-2"></path>
<path d="M13.033,17.6533 C12.758,12.1303 3.798,12.1213 3.902,17.7733 L3.926,25.9723 L0.309,22.7813 L0.24,24.9083 L5.022,28.9303 L9.587,24.9343 L9.593,22.6003 L5.988,25.8763 L6.006,18.1883 C6.091,14.4813 10.917,14.6183 11.11,18.0903 L13.033,17.6533 Z" id="Fill-6"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="30px" viewBox="0 0 24 30" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>右前拉链式通行复制 2</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_1_icon-汇总说明(一)" transform="translate(-2526.000000, -1465.000000)" fill="#CBCBCB">
<g id="编组-5" transform="translate(2487.000000, 1465.000000)">
<g id="右前拉链式通行复制-2" transform="translate(39.000000, 0.000000)">
<polygon id="path2214_13_复制-2" fill-rule="nonzero" points="5.367 8.80762745 5.367 3.211 9.045 6.338 9.113 3.594 4.504 -5.81756865e-13 -1.22568622e-12 3.598 0.063 6.175 3.526 3.32 3.526 6.83766305"></polygon>
<polygon id="路径-82" points="3.52776176 6 3.52776176 12.532961 14.4994366 17.7430093 18.0169253 23.2219655 21.8460384 29.382849 23.7348365 28.2046389 15.8910586 15.6934344 5.48836024 11.0513987 5.29910909 6"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="18px" height="29px" viewBox="0 0 18 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>14</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 0.241 12.0287908 0.241 12.0287908 9.36 0 9.36"></polygon>
<polygon id="path-3" points="0.383 0.5643 10.603 0.5643 10.603 29 0.383 29"></polygon>
</defs>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1815.000000, -700.000000)">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="14" transform="translate(433.000000, 84.436000)">
<g id="编组复制-30" transform="translate(0.000000, 4.564000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M11.8918,5.957 C11.7488,5.547 10.6338,4.675 9.5868,4.189 C8.5408,3.703 6.3328,3.756 6.3328,3.756 L3.3228,3.768 L6.1808,0.303 L3.6008,0.241 L-0.0002,4.747 L3.5958,9.36 L6.3418,9.291 L3.2128,5.612 L6.5328,5.596 C6.5328,5.596 8.3968,5.346 9.5238,6.138 C10.6508,6.93 11.9078,8.279 11.9148,8.665 C11.9278,9.437 12.1788,6.775 11.8918,5.957" id="Fill-1" fill="#FFFFFF" mask="url(#mask-2)"></path>
</g>
<path d="M13.4651,16.9544 C13.1941,11.5644 3.4731,11.5554 3.5741,17.0704 L3.5981,22.6214 L0.0651,19.5064 L9.99999994e-05,21.5824 L4.6671,25.5084 L9.1241,21.6074 L9.1301,19.3304 L5.6091,22.5254 L5.6281,17.4754 C5.7111,13.8584 11.3991,13.9914 11.5901,17.3804 L13.4651,16.9544 Z" id="Fill-1" fill="#FFFFFF"></path>
<g id="编组" transform="translate(7.000000, 0.000000)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-4"></g>
<polygon id="Fill-3" fill="#FFFFFF" mask="url(#mask-4)" points="6.677 29.0003 6.651 4.3433 10.536 7.4933 10.603 4.6013 5.553 0.5643 0.383 4.5953 0.461 7.6733 4.585 4.1653 4.599 28.9983"></polygon>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="25px" height="29px" viewBox="0 0 25 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>15</title>
<desc>Created with Sketch.</desc>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1382.000000, -765.000000)" fill="#FFFFFF">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="15" transform="translate(0.000000, 149.000000)">
<g id="编组复制-36">
<polygon id="Fill-1" points="11.0052 7.3645 10.9782 29.2045 13.3402 29.2125 13.3592 7.2255"></polygon>
<g id="编组" transform="translate(0.000000, 0.212000)">
<path d="M12.1751,6.9521 C12.0281,6.5281 10.6201,5.3741 9.5381,4.8721 C8.4561,4.3701 6.5491,4.4241 6.5491,4.4241 L3.4401,4.4361 L6.3951,0.8521 L3.7271,0.7881 L0.0001,5.4501 L3.7211,10.2231 L6.5631,10.1511 L3.3271,6.3451 L6.7631,6.3281 C6.7631,6.3281 8.4411,6.3221 9.6071,7.1411 C10.7731,7.9611 11.0681,9.6071 11.0751,10.0061 C11.0811,10.8041 12.4701,7.7981 12.1751,6.9521" id="Fill-2"></path>
<path d="M12.1429,6.9521 C12.2889,6.5281 13.6959,5.3741 14.7779,4.8721 C15.8599,4.3701 17.7679,4.4241 17.7679,4.4241 L20.8769,4.4361 L17.9209,0.8521 L20.5889,0.7881 L24.3169,5.4501 L20.5979,10.2231 L17.7539,10.1511 L20.9909,6.3451 L17.5559,6.3281 C17.5559,6.3281 15.8769,6.3221 14.7099,7.1411 C13.5439,7.9611 13.2489,9.6071 13.2429,10.0061 C13.2349,10.8041 11.8429,7.7981 12.1429,6.9521" id="Fill-4"></path>
</g>
</g>
<path d="M13.2426384,18.9757459 C12.9716384,13.5857459 3.473,13.6324734 3.574,19.1474734 L3.598,24.6984734 L0.065,21.5834734 L4.4408921e-14,23.6594734 L4.667,27.5854734 L9.124,23.6844734 L9.13,21.4074734 L5.609,24.6024734 L5.628,19.5524734 C5.711,15.9354734 11.399,16.0684734 11.59,19.4574734 L13.2426384,18.9757459 Z" id="Fill-1复制-2"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="30px" height="34px" viewBox="0 0 30 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>8</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1716.000000, -577.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="8" transform="translate(515.600000, 0.000000)">
<g id="编组复制-43复制复制复制复制复制复制" transform="translate(22.804065, 3.466667)">
<polygon id="Fill-2" points="0.174875 0.62493 5.921125 2.44533 7.017375 4.44456333 6.266125 9.93043 9.899875 1.27119667"></polygon>
</g>
<path d="M16.8043155,37.4499333 L19.4043155,37.4302 C18.874758,27.4278142 19.2271982,20.6776099 20.4616364,17.1795869 C21.6960745,13.681564 24.8160092,10.5921117 29.8214405,7.91123 L28.7251905,5.91199667 C23.0076071,9.07234955 19.4673154,12.4555062 18.1043155,16.0614667 C16.7413156,19.6674271 16.3079823,26.796916 16.8043155,37.4499333 Z" id="路径-10复制-6"></path>
<path d="M18.6841925,12.6495904 C16.5520134,11.6818749 12.9056057,11.8700547 12.9056057,11.8700547 L6.1174978,11.7295303 L9.15077187,16.6634882 L9.01228275,16.7434449 L1.53249187,10.1920108 L8.91372085,5.54753696 L6.34914478,9.44755298 L12.5391449,9.5964919 C12.5391449,9.5964919 16.0387566,9.51187148 18.0231496,10.1017809 C20.0056511,10.6904639 22.570293,12.0553733 22.8426547,12.5586785 C23.3645869,13.5666584 21.1968892,16.4105198 21.2472209,15.9189573 C21.2901023,15.4026889 20.8182774,13.6160575 18.6841925,12.6495904 Z" id="Fill-2复制-3" transform="translate(12.228160, 11.145491) rotate(-330.000000) translate(-12.228160, -11.145491) "></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="14px" height="29px" viewBox="0 0 14 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>10</title>
<desc>Created with Sketch.</desc>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1535.000000, -694.000000)" fill="#FFFFFF">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="9" transform="translate(153.000000, 79.000000)">
<g id="编组复制-42">
<polygon id="Fill-1" points="0 2.2319 0.684 7.9559 2.907 9.2609 2.306 4.8129 3.183 3.1899 7.78 1.7139 5.483 0.2089"></polygon>
</g>
<path d="M2.306,4.8129 C7.22258762,7.50140867 10.2019172,10.3039863 11.2439888,13.2206329 C12.2860605,16.1372796 12.1665642,21.3390686 10.8855,28.826 L12.9325,28.826 C14.0398725,20.4582153 14.0398725,14.8184169 12.9325,11.9066048 C11.8251275,8.99479263 8.57529416,6.08922438 3.183,3.1899 L2.306,4.8129 Z" id="路径-8"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="15px" height="29px" viewBox="0 0 15 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>17</title>
<desc>Created with Sketch.</desc>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1535.000000, -765.000000)" fill="#FFFFFF">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="17" transform="translate(153.000000, 149.000000)">
<g id="编组复制-41">
<polygon id="Fill-1" points="1.0061 7.3645 0.9781 29.2045 3.3411 29.2125 3.3601 7.2255"></polygon>
<g id="编组" transform="translate(1.000000, 0.212000)">
<path d="M0.1419,6.9521 C0.2879,6.5281 1.6949,5.3741 2.7769,4.8721 C3.8589,4.3701 5.7669,4.4241 5.7669,4.4241 L8.8759,4.4361 L5.9199,0.8521 L8.5879,0.7881 L12.3159,5.4501 L8.5939,10.2231 L5.7529,10.1521 L8.9899,6.3461 L5.5529,6.3281 C5.5529,6.3281 3.8769,6.3221 2.7109,7.1411 C1.5449,7.9611 1.2499,9.6071 1.2439,10.0061 C1.2339,10.8041 -0.1561,7.7981 0.1419,6.9521" id="Fill-4"></path>
<path d="M1.0418711,18.164 C1.1878711,17.74 2.5948711,16.586 3.6768711,16.084 C4.7588711,15.582 6.6668711,15.636 6.6668711,15.636 L9.7758711,15.648 L6.8198711,12.064 L9.4878711,12 L13.2158711,16.662 L9.4938711,21.435 L6.6528711,21.364 L9.8898711,17.558 L6.4528711,17.54 C6.4528711,17.54 4.7768711,17.534 3.6108711,18.353 C2.4448711,19.173 2.1498711,20.819 2.1438711,21.218 C2.1338711,22.016 0.743871102,19.01 1.0418711,18.164" id="Fill-4复制"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="13px" height="29px" viewBox="0 0 13 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>3</title>
<desc>Created with Sketch.</desc>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1539.000000, -617.000000)" fill="#FFFFFF">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="3" transform="translate(157.000000, 2.000000)">
<polygon id="Fill-1" points="0.0342 28.554 2.0802 28.538 2.0482 9.637 0.0002 8.799"></polygon>
<polygon id="Fill-2" points="7.2369 -0.0003 4.9399 1.5067 9.5369 2.9827 0.0019 8.7987 0.3129 10.8307 10.4139 4.6037 9.8129 9.0517 12.0359 7.7467 12.7199 2.0307 12.7199 2.0227"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="36px" height="32px" viewBox="0 0 36 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>10</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1877.000000, -577.000000)" fill="#E99A3C">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="10" transform="translate(680.200000, 0.000000)">
<g id="8" transform="translate(18.620690, 3.666667)" fill-rule="nonzero">
<polygon id="Fill-1" points="13.689931 5.12447619 13.6551724 32.1644762 16.5885517 32.174381 16.1788966 5.12447619"></polygon>
<g id="编组" transform="translate(0.000000, 0.262476)">
<path d="M16.1788966,5.76122857 C15.8375172,-1.07677143 4.71475862,-1.08791429 4.84386207,5.9098 L4.87365517,16.0609429 L0.383586207,12.110181 L0.297931034,14.7436095 L6.2342069,19.7232286 L11.9011034,14.7758 L11.9085517,11.8860857 L7.43337931,15.9420857 L7.45572414,6.42360952 C7.56124138,1.83399048 13.5521379,2.00360952 13.7917241,6.30227619 L16.1788966,5.76122857 Z" id="Fill-6"></path>
</g>
</g>
<text id="X" font-family="PingFangSC-Regular, PingFang SC" font-size="30" font-weight="normal" letter-spacing="-0.1384615">
<tspan x="0" y="32">X</tspan>
</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="23px" height="29px" viewBox="0 0 23 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>左前拉链式通行复制 2</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_1_icon-汇总说明(一)" transform="translate(-2487.000000, -1465.000000)" fill="#CBCBCB">
<g id="编组-5" transform="translate(2487.000000, 1465.000000)">
<g id="左前拉链式通行复制-2" transform="translate(0.000000, 0.000000)">
<polygon id="path2214_13_复制" fill-rule="nonzero" points="18.367 8.80762745 18.367 3.211 22.045 6.338 22.113 3.594 17.504 -5.81756865e-13 13 3.598 13.063 6.175 16.526 3.32 16.526 6.83766305"></polygon>
<polygon id="路径-83" points="16.5142741 5.61715104 16.5142741 10.7195104 6.92844988 15.479774 -1.00186526e-12 28.1043075 2.03585271 29 8.61530914 17.0797612 18.3915699 12.2198544 18.3915699 5.61715104"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="18px" height="29px" viewBox="0 0 18 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>5</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.0636 0.8325 10.1876 0.8325 10.1876 29 0.0636 29"></polygon>
<polygon id="path-3" points="0.450062354 0.241 12.478 0.241 12.478 9.36 0.450062354 9.36"></polygon>
</defs>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1676.000000, -616.000000)">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="5" transform="translate(294.000000, 0.000000)">
<g id="编组" transform="translate(0.000000, 0.168000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-4"></g>
<polygon id="Fill-3" fill="#FFFFFF" mask="url(#mask-2)" points="6.2966 29.0005 6.2716 4.5755 10.1176 7.6945 10.1876 4.8315 5.1846 0.8325 0.0636 4.8265 0.1406 7.8755 4.2246 4.3995 4.2386 29.0005"></polygon>
</g>
<g id="编组" transform="translate(5.000000, 10.168000)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-6"></g>
<path d="M0.5871,5.957 C0.7311,5.547 1.8451,4.675 2.8921,4.189 C3.9381,3.703 6.1451,3.756 6.1451,3.756 L9.1541,3.768 L6.2961,0.303 L8.8761,0.241 L12.4781,4.747 L8.8811,9.36 L6.1361,9.291 L9.2651,5.612 L5.9441,5.596 C5.9441,5.596 4.0821,5.346 2.9531,6.138 C1.8261,6.93 0.5691,8.279 0.5631,8.665 C0.5511,9.437 0.3001,6.775 0.5871,5.957" id="Fill-5" fill="#FFFFFF" mask="url(#mask-4)"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="14px" height="29px" viewBox="0 0 14 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>11</title>
<desc>Created with Sketch.</desc>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1603.000000, -694.000000)" fill="#D8D8D8">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="11" transform="translate(221.841210, 79.000000)">
<g id="编组复制-43" transform="translate(4.158790, 0.000000)">
<polygon id="Fill-2" points="3.2369 -0.0003 0.9399 1.5067 5.5369 2.9827 6.4139 4.6037 5.8129 9.0517 8.0359 7.7467 8.7199 2.0307 8.7199 2.0227"></polygon>
</g>
<path d="M0.158990333,28.554 L2.23899033,28.538 C1.81534428,20.4279575 2.09729651,14.9548188 3.08484702,12.118584 C4.07239752,9.28234915 6.5683453,6.77738783 10.5726903,4.6037 L9.69569033,2.9827 C5.12162357,5.54514828 2.28939023,8.28824828 1.19899033,11.212 C0.108590432,14.1357517 -0.238076235,19.9164184 0.158990333,28.554 Z" id="路径-10"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="13px" height="29px" viewBox="0 0 13 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>4</title>
<desc>Created with Sketch.</desc>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1604.000000, -617.000000)" fill="#FFFFFF">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="4" transform="translate(222.000000, 2.000000)">
<polygon id="Fill-1" points="0 2.2319 0.684 7.9559 2.907 9.2609 2.306 4.8129 12.406 11.0389 12.717 9.0079 3.183 3.1899 7.78 1.7139 5.483 0.2089"></polygon>
<polygon id="Fill-2" points="10.8855 28.826 12.9325 28.81 12.9005 9.909 10.8525 9.071"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1006 B

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="26px" height="36px" viewBox="0 0 26 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>11</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1959.000000, -577.000000)">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="11" transform="translate(762.000000, 0.000000)">
<text id="X复制" font-family="PingFangSC-Regular, PingFang SC" font-size="30" font-weight="normal" letter-spacing="-0.1384615" fill="#FBFAB5">
<tspan x="2.03772024" y="32">X</tspan>
</text>
<rect id="矩形" stroke="#FF090B" stroke-width="2" x="1" y="5.9047619" width="24" height="32.6666667"></rect>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="17px" height="29px" viewBox="0 0 17 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>2</title>
<desc>Created with Sketch.</desc>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1462.000000, -620.000000)" fill="#FFFFFF">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="2" transform="translate(79.000000, 5.000000)">
<polygon id="Fill-1" points="12.7099 0.0002 8.2059 3.5992 8.2689 6.1762 11.7329 3.3212 11.7199 28.4142 13.5599 28.3752 13.5739 3.2102 17.2499 6.3382 17.3199 3.6292 17.3199 3.5932"></polygon>
<g id="编组" transform="translate(0.000000, 7.415000)">
<path d="M11.9364,9.6313 C11.9574,9.2143 11.7034,7.7683 10.5764,6.9773 C9.4504,6.1853 7.5304,6.3203 7.5304,6.3203 L4.2094,6.3363 L7.3384,10.0133 L4.5974,10.0823 L0.9994,5.4723 L4.6014,0.9673 L7.1794,1.0293 L4.3244,4.4933 L7.3304,4.4813 C7.3304,4.4813 9.1734,4.4293 10.2204,4.9153 C11.2664,5.4003 12.6214,6.5153 12.7664,6.9233 C13.0444,7.7403 11.9114,10.0283 11.9364,9.6313" id="Fill-2"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="23px" height="35px" viewBox="0 0 23 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>6</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1578.000000, -573.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="6" transform="translate(378.000000, 0.000000)">
<path d="M18.9616548,15.2840226 C18.5526798,15.4775537 18.1450258,15.791901 17.7386929,16.2270645 L17.7076276,34.8517038 L20.6064457,34.8589808 L20.6297639,14.8589808 C19.9266663,14.9488109 19.3706299,15.0904915 18.9616548,15.2840226 Z" id="Fill-1复制-5"></path>
<polygon id="Fill-1复制-6" transform="translate(19.536878, 11.875000) rotate(-360.000000) translate(-19.536878, -11.875000) " points="19.4761276 0 14.0884003 6.41224396 14.0258094 6.41224396 18.2611276 4.28331984 18.2611276 23.75 20.5193094 23.7174016 20.5193094 4.28331984 25.0479457 6.54765257 25.0479457 6.41224396"></polygon>
<path d="M18.4197214,14.3926289 C16.2961328,13.390241 12.6897126,13.5294277 12.6897126,13.5294277 L5.96930832,13.2949546 L9.03918312,18.2981218 L8.90321198,18.3766248 L1.41023366,11.685914 L8.6520031,7.11678255 L6.16726011,11.0034009 L12.2958074,11.2381269 C12.2958074,11.2381269 15.7583587,11.2010638 17.7304921,11.8215055 C19.7007365,12.4406878 22.257803,13.848425 22.5342784,14.3582815 C23.0646907,15.379059 20.9582597,18.2090661 21.0013287,17.7154468 C21.0366846,17.196881 20.5451792,15.3937874 18.4197214,14.3926289 Z" id="Fill-2复制-2" transform="translate(12.015113, 12.746704) rotate(-330.000000) translate(-12.015113, -12.746704) "></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="36px" height="34px" viewBox="0 0 36 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>3</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1353.000000, -577.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="3" transform="translate(152.600000, 0.000000)">
<path d="M19.0049522,17.8200069 C18.6571789,18.0097922 18.310529,18.3180554 17.9650024,18.7447964 L17.9385859,37.0089588 L20.4036057,37.016095 L20.4234344,17.4031918 C19.825553,17.4912832 19.3527256,17.6302216 19.0049522,17.8200069 Z" id="Fill-1复制-3"></path>
<polygon id="Fill-1复制-4" transform="translate(28.499192, 19.368546) rotate(-270.000000) translate(-28.499192, -19.368546) " points="28.4385146 8.80793998 23.0572242 15.1813219 22.9947081 15.1813219 27.2249662 13.0653003 27.2249662 29.9291521 29.4804501 29.8967513 29.4804501 13.0653003 34.0036759 15.3159098 34.0036759 15.1813219"></polygon>
<path d="M18.5647697,11.9585715 C16.4455532,10.9967906 12.8212801,11.1838907 12.8212801,11.1838907 L6.07438649,11.0443467 L9.08915471,15.9481898 L8.95150492,16.027662 L1.51724507,9.51627817 L8.85374633,4.89996476 L6.30466887,8.77626761 L12.4570857,8.92418585 C12.4570857,8.92418585 15.9354521,8.8400169 17.9077868,9.42629614 C19.8782415,10.0113564 22.427288,11.3679034 22.6979869,11.8681373 C23.2167319,12.8699667 21.0621426,15.6965421 21.1121777,15.2079735 C21.1548082,14.6948495 20.6858806,12.9191115 18.5647697,11.9585715 Z" id="Fill-2复制" transform="translate(12.147953, 10.463813) rotate(-330.000000) translate(-12.147953, -10.463813) "></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="37px" height="35px" viewBox="0 0 37 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>9</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1794.000000, -573.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="9" transform="translate(594.400000, 0.000000)">
<polygon id="Fill-1复制-11" transform="translate(28.499192, 21.863125) rotate(-270.000000) translate(-28.499192, -21.863125) " points="28.437317 11.3025189 22.949817 17.6759008 22.886067 17.6759008 27.199817 15.5598793 27.199817 32.4237311 29.499817 32.3913303 29.499817 15.5598793 34.112317 17.8104888 34.112317 17.6759008"></polygon>
<polygon id="Fill-1复制-13" transform="translate(19.350416, 17.500000) rotate(-360.000000) translate(-19.350416, -17.500000) " points="19.2889159 -3.83693077e-12 13.8346735 6.41224396 13.7713098 6.41224396 18.0589159 4.28331984 18.0589159 35 20.3449765 34.9674016 20.3449765 4.28331984 24.929522 6.54765257 24.929522 6.41224396"></polygon>
<path d="M18.6225918,14.3598813 C16.484699,13.365752 12.8441419,13.5246475 12.8441419,13.5246475 L6.06276515,13.3253769 L9.13431861,18.327575 L8.99666881,18.4070471 L1.4700785,11.7357423 L8.80332719,7.11379524 L6.2748001,11.0256924 L12.4588384,11.2283806 C12.4588384,11.2283806 15.9536485,11.1726929 17.9407256,11.7845068 C19.925903,12.3950676 22.4991205,13.79348 22.7754302,14.3034322 C23.3052968,15.3245246 21.1642331,18.174527 21.2103396,17.6791539 C21.2487951,17.1587987 20.7623777,15.3527675 18.6225918,14.3598813 Z" id="Fill-2复制-4" transform="translate(12.164938, 12.760421) rotate(-330.000000) translate(-12.164938, -12.760421) "></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="22px" height="34px" viewBox="0 0 22 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>编组 44</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1197.000000, -576.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="编组-44">
<path d="M20.1654911,17.7172577 C19.7529096,17.907043 19.3416607,18.2153062 18.9317447,18.6420472 L18.9004054,36.9062096 L21.8247864,36.9133458 L21.8483102,17.3004425 C21.1390124,17.388534 20.5780727,17.5274723 20.1654911,17.7172577 Z" id="Fill-1复制-2"></path>
<polygon id="Fill-1" transform="translate(10.852786, 18.066192) rotate(-90.000000) translate(-10.852786, -18.066192) " points="10.7921089 7.54238214 5.41081861 13.8935571 5.34830248 13.8935571 9.57856054 11.7849085 9.57856054 28.5900012 11.8340444 28.5577133 11.8340444 11.7849085 16.3572702 14.0276761 16.3572702 13.8935571"></polygon>
<path d="M19.5068305,11.9688694 C17.3917009,11.0047289 13.7771811,11.1861979 13.7771811,11.1861979 L7.04770828,11.036596 L10.0619969,15.9407161 L9.92482671,16.0199113 L2.50017028,9.50298298 L9.81053462,4.90175973 L7.2739669,8.77084008 L13.4105292,8.92791196 C13.4105292,8.92791196 16.8796788,8.84906434 18.8477438,9.43780865 C20.8139319,10.0253322 23.3583639,11.3845434 23.6291101,11.88475 C23.6993851,12.020416 24.1399061,11.9265708 24.1245388,12.1162293 C24.026436,13.3269837 22.0099756,15.6412527 22.052484,15.2192843 C22.0942289,14.7066716 21.6238476,12.9317729 19.5068305,11.9688694 Z" id="Fill-2" transform="translate(13.312551, 10.460836) rotate(-330.000000) translate(-13.312551, -10.460836) "></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="26px" height="35px" viewBox="0 0 26 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>14</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1344.000000, -674.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="14" transform="translate(147.088437, 101.000000)">
<polygon id="Fill-1复制-14" transform="translate(10.824979, 20.613125) rotate(-90.000000) translate(-10.824979, -20.613125) " points="10.7631038 10.0893155 5.27560378 16.4404905 5.21185378 16.4404905 9.52560378 14.3318418 9.52560378 31.1369345 11.8256038 31.1046466 11.8256038 14.3318418 16.4381038 16.5746094 16.4381038 16.4404905"></polygon>
<polygon id="Fill-1复制-15" transform="translate(20.279509, 17.500000) rotate(-360.000000) translate(-20.279509, -17.500000) " points="20.2182228 -3.83693077e-12 14.7829847 6.41224396 14.7198419 6.41224396 18.9925085 4.28331984 18.9925085 35 21.2706038 34.9674016 21.2706038 4.28331984 25.8391752 6.54765257 25.8391752 6.41224396"></polygon>
<path d="M19.5646291,14.3692368 C17.4308232,13.3727479 13.8000195,13.5260124 13.8000195,13.5260124 L7.03606345,13.3166839 L10.1071373,18.3191588 L9.96996711,18.3983541 L2.45298022,11.7215047 L9.76009199,7.11464782 L7.24407464,11.0193225 L13.4122584,11.2311643 C13.4122584,11.2311643 16.8978517,11.180798 18.8806591,11.7950769 C20.86157,12.408101 23.4301729,13.8091776 23.70653,14.3191025 C24.2365524,15.3401049 22.1053838,18.1843944 22.1506225,17.6895224 C22.1881924,17.1696784 21.7003213,15.3644865 19.5646291,14.3692368 Z" id="Fill-2复制-6" transform="translate(13.122129, 12.756501) rotate(-330.000000) translate(-13.122129, -12.756501) "></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="18px" height="34px" viewBox="0 0 18 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>12</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-1201.000000, -675.000000)" fill="#FFFFFF" fill-rule="nonzero">
<g id="编组-45" transform="translate(1197.000000, 573.000000)">
<g id="12" transform="translate(1.000000, 99.000000)">
<g id="1">
<path d="M19.1654911,17.7172577 C18.7529096,17.907043 18.3416607,18.2153062 17.9317447,18.6420472 L17.9004054,36.9062096 L20.8247864,36.9133458 L20.8483102,17.3004425 C20.1390124,17.388534 19.5780727,17.5274723 19.1654911,17.7172577 Z" id="Fill-1复制-7"></path>
<path d="M18.5068305,11.9688694 C16.3917009,11.0047289 12.7771811,11.1861979 12.7771811,11.1861979 L6.04770828,11.036596 L9.06199689,15.9407161 L8.92482671,16.0199113 L1.50017028,9.50298298 L8.81053462,4.90175973 L6.2739669,8.77084008 L12.4105292,8.92791196 C12.4105292,8.92791196 15.8796788,8.84906434 17.8477438,9.43780865 C19.8139319,10.0253322 22.3583639,11.3845434 22.6291101,11.88475 C22.6993851,12.020416 23.1399061,11.9265708 23.1245388,12.1162293 C23.026436,13.3269837 21.0099756,15.6412527 21.052484,15.2192843 C21.0942289,14.7066716 20.6238476,12.9317729 18.5068305,11.9688694 Z" id="Fill-2复制-5" transform="translate(12.312551, 10.460836) rotate(-330.000000) translate(-12.312551, -10.460836) "></path>
<path d="M20.9199352,20.950913 C20.579459,14.1807839 9.48612564,14.1697517 9.61488754,21.0980097 L9.64460183,31.1483968 L5.16641135,27.2368484 L11.0015542,34.7743323 L16.6608875,27.0149775 L12.1975542,31.0307194 L12.2198399,21.6067194 C12.325078,17.0626549 18.3001256,17.2305904 18.539078,21.4865904 L20.9199352,20.950913 Z" id="Fill-6"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="25px" height="29px" viewBox="0 0 25 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>9</title>
<desc>Created with Sketch.</desc>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1461.000000, -695.000000)" fill="#FFFFFF">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="9" transform="translate(79.000000, 79.000000)">
<polygon id="Fill-1" points="11.0052 7.3645 10.9782 29.2045 13.3402 29.2125 13.3592 7.2255"></polygon>
<g id="编组" transform="translate(0.000000, 0.212000)">
<path d="M12.1751,6.9521 C12.0281,6.5281 10.6201,5.3741 9.5381,4.8721 C8.4561,4.3701 6.5491,4.4241 6.5491,4.4241 L3.4401,4.4361 L6.3951,0.8521 L3.7271,0.7881 L0.0001,5.4501 L3.7211,10.2231 L6.5631,10.1511 L3.3271,6.3451 L6.7631,6.3281 C6.7631,6.3281 8.4411,6.3221 9.6071,7.1411 C10.7731,7.9611 11.0681,9.6071 11.0751,10.0061 C11.0811,10.8041 12.4701,7.7981 12.1751,6.9521" id="Fill-2"></path>
<path d="M12.1429,6.9521 C12.2889,6.5281 13.6959,5.3741 14.7779,4.8721 C15.8599,4.3701 17.7679,4.4241 17.7679,4.4241 L20.8769,4.4361 L17.9209,0.8521 L20.5889,0.7881 L24.3169,5.4501 L20.5979,10.2231 L17.7539,10.1511 L20.9909,6.3451 L17.5559,6.3281 C17.5559,6.3281 15.8769,6.3221 14.7099,7.1411 C13.5439,7.9611 13.2489,9.6071 13.2429,10.0061 C13.2349,10.8041 11.8429,7.7981 12.1429,6.9521" id="Fill-4"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="18px" height="28px" viewBox="0 0 18 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>提示右后方掉头复制 2</title>
<desc>Created with Sketch.</desc>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_1_icon-汇总说明(一)" transform="translate(-2532.000000, -1541.000000)" fill="#CBCBCB" fill-rule="nonzero">
<g id="编组-5" transform="translate(2487.000000, 1465.000000)">
<g id="提示右后方掉头复制-2" transform="translate(45.000000, 75.000000)">
<path d="M2.676,11.3454063 C2.67063205,9.22749842 2.44138369,7.99921639 2.676,6.87640626 C3.35922843,3.60665998 5.25238344,3.57798983 6.62671411,3.54689146 C7.63293806,3.52412262 9.04920727,3.68963843 9.70627148,4.800781 C10.3137327,5.82804132 10.201,7.72888847 10.201,9.49140626 L10.233,13.3034063 L5.551,9.44440626 L5.468,12.9274063 L11.556,17.7914063 L17.79,12.9344063 L17.694,9.22640626 L12.723,13.1864063 L12.744,6.99340626 C12.723,1.84469919 9.40506239,0.91289911 6.15097677,1 C2.98605771,1.0847142 0,2.80476579 0.045,6.87640626 L0,28.9614063 L2.655,28.9744063 L2.676,11.3454063 Z" id="path22940"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="18px" height="30px" viewBox="0 0 18 30" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>提示前方可自行或右后方掉头复制 2</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M5.81049598,17.9079384 C5.85034368,16.2473596 7.13426,15.6994045 8.5,15.6994045 C9.07539294,15.6994045 9.80562871,15.7847047 10.2613819,16 C10.7525194,16.2320107 10.8901241,16.4966721 10.934,16.7558093 C11.0055545,17.1784204 11.0055545,19.7678173 10.934,24.524 L7.437,21.441 L7.37,23.496 L11.991,27.383 L16.404,23.523 L16.409,21.268 L12.924,24.432 L12.943,17.005 C11.991,12.0824629 3.929,13.555 4.117,16.911 L5.81049598,17.9079384 Z" id="path-1"></path>
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="12.2952362" height="13.5506571" fill="white">
<use xlink:href="#path-1"></use>
</mask>
</defs>
<g id="--" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_1_icon-汇总说明(一)" transform="translate(-2487.000000, -1539.000000)" fill="#CBCBCB" fill-rule="nonzero" stroke="#CBCBCB">
<g id="编组-5" transform="translate(2487.000000, 1465.000000)">
<g id="提示前方可自行或右后方掉头复制-2" transform="translate(1.000000, 74.000000)">
<polygon id="path2214_3_" stroke-width="0.8" points="5.909 29.208 5.895 4.113 9.36 6.968 9.422 4.391 4.918 0.792 0.308 4.386 0.377 7.13 4.054 4.003 4.071 29.167"></polygon>
<use id="path22940_9_" mask="url(#mask-2)" stroke-width="1.6" stroke-dasharray="6" xlink:href="#path-1"></use>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="28px" height="35px" viewBox="0 0 28 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>右右后方掉</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-994.000000, -1237.000000)" fill-rule="nonzero">
<g id="编组-8" transform="translate(994.000000, 1237.000000)">
<g id="右右后方掉" transform="translate(1.000000, 1.000000)">
<path d="M8.69673216,17.0755955 C8.73657986,15.4150167 10.0204962,14.8670616 11.3862362,14.8670616 C11.9616291,14.8670616 12.6918649,14.9523618 13.1476181,15.1676571 C13.6387556,15.3996679 13.7763603,15.6643292 13.8202362,15.9234665 C13.8917907,16.3460776 13.8917907,18.9354745 13.8202362,23.6916571 L10.3232362,20.6086571 L10.2562362,22.6636571 L14.8772362,26.5506571 L19.2902362,22.6906571 L19.2952362,20.4356571 L15.8102362,23.5996571 L15.8292362,16.1726571 C14.8772362,11.25012 6.81523618,12.7226571 7.00323618,16.0786571 L8.69673216,17.0755955 Z" id="path22940_9_复制-6" fill="#CBCBCB"></path>
<polygon id="path2200_4_复制-7" fill="#CBCBCB" points="6.158 32.9787224 6.186 7.15255237 8.54 6.987 8.522 32.987"></polygon>
<path d="M6.1998711,7.164 C6.3458711,6.74 7.7528711,5.586 8.8348711,5.084 C9.9168711,4.582 11.8238711,4.636 11.8238711,4.636 L14.9338711,4.648 L11.9778711,1.064 L14.6458711,1 L18.3738711,5.662 L14.6518711,10.435 L11.8108711,10.364 L15.0478711,6.558 L11.6108711,6.54 C11.6108711,6.54 9.9348711,6.534 8.7688711,7.353 C7.6028711,8.173 7.3078711,9.819 7.3018711,10.218 C7.2918711,11.016 5.9018711,8.01 6.1998711,7.164 Z" id="path2249_1_复制-3" fill="#CBCBCB"></path>
<rect id="矩形复制-44" stroke="#CBCBCB" stroke-width="2" x="0" y="0" width="26" height="33"></rect>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="28px" height="35px" viewBox="0 0 28 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>左直右后方掉</title>
<desc>Created with Sketch.</desc>
<g id="页面" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="C9_6_icon-汇总说明-" transform="translate(-995.000000, -1299.000000)" fill-rule="nonzero">
<g id="编组-8" transform="translate(994.000000, 1237.000000)">
<g id="左直右后方掉" transform="translate(2.000000, 63.000000)">
<path d="M13.8547322,18.0755955 C13.8945799,16.4150167 15.1784962,15.8670616 16.5442362,15.8670616 C17.1196291,15.8670616 17.8498649,15.9523618 18.3056181,16.1676571 C18.7967556,16.3996679 18.9343603,16.6643292 18.9782362,16.9234665 C19.0497907,17.3460776 19.0497907,19.9354745 18.9782362,24.6916571 L15.4812362,21.6086571 L15.4142362,23.6636571 L20.0352362,27.5506571 L24.4482362,23.6906571 L24.4532362,21.4356571 L20.9682362,24.5996571 L20.9872362,17.1726571 C20.0352362,12.25012 11.9732362,13.7226571 12.1612362,17.0786571 L13.8547322,18.0755955 Z" id="path22940_9_复制-7" fill="#CBCBCB"></path>
<polygon id="path2200_4_复制-6" fill="#CBCBCB" points="11.9201538 33.2190277 12.158 11.2390277 14.1168968 11.2390277 14.4526145 33.2190277"></polygon>
<path d="M13.175,15.1780277 C13.028,14.7540277 11.621,13.6000277 10.539,13.0980277 C9.457,12.5960277 7.55,12.6500277 7.55,12.6500277 L4.441,12.6620277 L7.396,9.07802773 L4.728,9.01402773 L1,13.6760277 L4.721,18.4490277 L7.563,18.3770277 L4.326,14.5710277 L7.762,14.5540277 C7.762,14.5540277 9.44,14.5480277 10.606,15.3670277 C11.772,16.1870277 12.066,17.8330277 12.073,18.2320277 C12.081,19.0300277 13.471,16.0240277 13.175,15.1780277 Z" id="path2214_5_复制-3" fill="#CBCBCB"></path>
<polygon id="path2214_13_复制-8" fill="#CBCBCB" points="14.36 27.5340277 14.0872793 4.004 17.7652793 7.131 17.8332793 4.387 13.2242793 0.793 8.5470131 4.554 8.6100131 7.131 12.2276922 4.004 11.978 27.5340277"></polygon>
<rect id="矩形复制-59" stroke="#CBCBCB" stroke-width="2" x="0" y="0" width="26" height="33"></rect>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="25px" height="29px" viewBox="0 0 25 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>12</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 0.241 12.0287908 0.241 12.0287908 9.36 0 9.36"></polygon>
<polygon id="path-3" points="0.0636 0.8325 10.1876 0.8325 10.1876 29 0.0636 29"></polygon>
<polygon id="path-5" points="0.450062354 0.241 12.478 0.241 12.478 9.36 0.450062354 9.36"></polygon>
</defs>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1669.000000, -701.000000)">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="12" transform="translate(287.000000, 85.168000)">
<g id="编组" transform="translate(0.000000, 10.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M11.8918,5.957 C11.7488,5.547 10.6338,4.675 9.5868,4.189 C8.5408,3.703 6.3328,3.756 6.3328,3.756 L3.3228,3.768 L6.1808,0.303 L3.6008,0.241 L-0.0002,4.747 L3.5958,9.36 L6.3418,9.291 L3.2128,5.612 L6.5328,5.596 C6.5328,5.596 8.3968,5.346 9.5238,6.138 C10.6508,6.93 11.9078,8.279 11.9148,8.665 C11.9278,9.437 12.1788,6.775 11.8918,5.957" id="Fill-1" fill="#FFFFFF" mask="url(#mask-2)"></path>
</g>
<g id="编组" transform="translate(7.000000, 0.000000)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-4"></g>
<polygon id="Fill-3" fill="#FFFFFF" mask="url(#mask-4)" points="6.2966 29.0005 6.2716 4.5755 10.1176 7.6945 10.1876 4.8315 5.1846 0.8325 0.0636 4.8265 0.1406 7.8755 4.2246 4.3995 4.2386 29.0005"></polygon>
</g>
<g id="编组" transform="translate(12.000000, 10.000000)">
<mask id="mask-6" fill="white">
<use xlink:href="#path-5"></use>
</mask>
<g id="Clip-6"></g>
<path d="M0.5871,5.957 C0.7311,5.547 1.8451,4.675 2.8921,4.189 C3.9381,3.703 6.1451,3.756 6.1451,3.756 L9.1541,3.768 L6.2961,0.303 L8.8761,0.241 L12.4781,4.747 L8.8811,9.36 L6.1361,9.291 L9.2651,5.612 L5.9441,5.596 C5.9441,5.596 4.0821,5.346 2.9531,6.138 C1.8261,6.93 0.5691,8.279 0.5631,8.665 C0.5511,9.437 0.3001,6.775 0.5871,5.957" id="Fill-5" fill="#FFFFFF" mask="url(#mask-6)"></path>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="19px" height="28px" viewBox="0 0 19 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>6</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 0.0004 18.2075 0.0004 18.2075 27.9743 0 27.9743"></polygon>
</defs>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1747.000000, -619.000000)">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="6" transform="translate(365.000000, 4.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-2"></g>
<path d="M18.2075,5.3453 C18.2035,-1.9057 4.8145,-1.7047 4.7325,5.4913 L4.7655,23.3033 L0.0825,19.4443 L-0.0005,22.9273 L6.0875,27.7913 L12.3215,22.9343 L12.2265,19.2263 L7.2545,23.1863 L7.2755,5.9933 C7.4185,0.9203 15.4365,1.4613 15.5765,5.8763 L15.5315,27.9613 L18.1865,27.9743 L18.2075,5.3453 Z" id="Fill-1" fill="#FFFFFF" mask="url(#mask-2)"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="18px" height="29px" viewBox="0 0 18 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>7</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0.383 0.5643 10.603 0.5643 10.603 29 0.383 29"></polygon>
</defs>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-1815.000000, -621.000000)">
<g id="编组-25" transform="translate(1382.000000, 615.000000)">
<g id="7" transform="translate(433.000000, 5.000000)">
<path d="M13.4651,17.3904 C13.1941,12.0004 3.4731,11.9914 3.5741,17.5064 L3.5981,23.0574 L0.0651,19.9424 L0.0001,22.0184 L4.6671,25.9444 L9.1241,22.0434 L9.1301,19.7664 L5.6091,22.9614 L5.6281,17.9114 C5.7111,14.2944 11.3991,14.4274 11.5901,17.8164 L13.4651,17.3904 Z" id="Fill-1" fill="#FFFFFF"></path>
<g id="编组" transform="translate(7.000000, 0.436000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-4"></g>
<polygon id="Fill-3" fill="#FFFFFF" mask="url(#mask-2)" points="6.677 29.0003 6.651 4.3433 10.536 7.4933 10.603 4.6013 5.553 0.5643 0.383 4.5953 0.461 7.6733 4.585 4.1653 4.599 28.9983"></polygon>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 B

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="10px" height="29px" viewBox="0 0 10 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 54.1 (76490) - https://sketchapp.com -->
<title>Fill 20</title>
<desc>Created with Sketch.</desc>
<g id="待定" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="工具栏汇总复制" transform="translate(-316.000000, -1195.000000)" fill="#CBCBCB">
<g id="编组复制-5" transform="translate(316.000000, 1195.000000)">
<g id="Fill-20" transform="translate(0.205900, 0.000200)">
<polygon id="Fill-1" points="4.504 3.33955086e-13 6.98108238e-13 3.599 0.063 6.176 3.527 3.321 3.514 28.414 5.354 28.375 5.368 3.21 9.044 6.338 9.114 3.629 9.114 3.593"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 927 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" width="124.7" height="124.7" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 124.7 124.7"><defs><style>.m{fill:url(#f);}.n,.o{fill:#535a60;}.p{fill:#262d34;isolation:isolate;opacity:.2;}.q{fill:url(#j);filter:url(#k);}.r{fill:url(#g);filter:url(#h);}.o{opacity:0;}</style><linearGradient id="f" x1="58.7" y1="31" x2="66.4" y2="31" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#989898"/><stop offset="0" stop-color="#a3a3a3"/><stop offset=".1" stop-color="#c4c5c5"/><stop offset=".2" stop-color="#d8d9d9"/><stop offset=".3" stop-color="#e0e1e1"/><stop offset=".4" stop-color="#dbdcdc"/><stop offset=".5" stop-color="#cccece"/><stop offset=".6" stop-color="#b5b6b7"/><stop offset=".7" stop-color="#949697"/><stop offset=".8" stop-color="#6a6c6f"/><stop offset=".8" stop-color="#3f4246"/><stop offset="1" stop-color="#404247"/><stop offset="1" stop-color="#43434a"/></linearGradient><linearGradient id="g" x1="776.5" y1="39.3" x2="788.4" y2="39.3" gradientTransform="translate(-720)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#11627b"/><stop offset=".1" stop-color="#0b788d"/><stop offset=".3" stop-color="#00a4b1"/><stop offset=".4" stop-color="#039aa9"/><stop offset=".5" stop-color="#068b9d"/><stop offset=".8" stop-color="#11627b"/></linearGradient><filter id="h" filterUnits="userSpaceOnUse"><feOffset dx="0" dy="1"/><feGaussianBlur result="i" stdDeviation=".3"/><feFlood flood-color="#000" flood-opacity=".2"/><feComposite in2="i" operator="in"/><feComposite in="SourceGraphic"/></filter><linearGradient id="j" x1="-396.1" y1="15.6" x2="-408" y2="15.6" gradientTransform="translate(-339.8) rotate(-180) scale(1 -1)" xlink:href="#g"/><filter id="k" filterUnits="userSpaceOnUse"><feOffset dx="0" dy="1"/><feGaussianBlur result="l" stdDeviation=".3"/><feFlood flood-color="#000" flood-opacity=".2"/><feComposite in2="l" operator="in"/><feComposite in="SourceGraphic"/></filter></defs><g id="c"><g><rect class="o" y="0" width="124.7" height="124.7"/><g><ellipse id="d" class="p" cx="62.4" cy="61.3" rx="14.4" ry="3.7"/><ellipse id="e" class="n" cx="62.4" cy="61.3" rx="7.5" ry="3"/><path class="m" d="M59.4,0h6C66.1,0,66.6,.6,66.6,1.3V58.7c0,1.9-1.5,3.4-3.4,3.4h-1.8c-1.9,0-3.4-1.5-3.4-3.4V1.3C58.1,.6,58.7,0,59.4,0Z"/></g><path class="r" d="M68.4,46.8s-1.1,.7-5.8,.7-6.2-.7-6.2-.7v-14.7s.7-1,6.2-1,5.8,1,5.8,1v14.7Z"/><path class="q" d="M56.3,23.2s1.1,.7,5.8,.7,6.2-.7,6.2-.7V8.4s-.7-1-6.2-1-5.8,1-5.8,1v14.7Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" width="511.9" height="512" viewBox="0 0 511.9 512"><defs><style>.d,.e{fill:#fff;}.e{opacity:0;}</style></defs><g id="c"><g><rect class="e" width="170.6" height="512"/><rect class="e" width="42.7" height="512"/><rect class="e" x="128" width="42.7" height="512"/><rect class="d" x="42.7" width="85.3" height="512"/></g><g><rect class="e" x="170.6" width="170.6" height="512"/><rect class="e" x="170.6" width="42.7" height="512"/><rect class="e" x="298.6" width="42.7" height="512"/><rect class="d" x="213.3" width="85.3" height="512"/></g><g><rect class="e" x="341.3" width="170.6" height="512"/><rect class="e" x="341.3" width="42.7" height="512"/><rect class="e" x="469.2" width="42.7" height="512"/><rect class="d" x="383.9" width="85.3" height="512"/></g></g></svg>

After

Width:  |  Height:  |  Size: 852 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><defs><style>.n{opacity:0;stroke-width:1.2px;}.n,.o{fill:none;stroke:#fff;}.p{fill:#fff;fill-rule:evenodd;}</style></defs><g id="c"><g id="d"><g id="e"><g id="f"><g id="g"><rect id="h" class="n" x=".6" y=".6" width="22.8" height="22.8" rx="2" ry="2"/><g id="i"><polygon id="j" class="o" points="12 3 4 11.5 12 20 20 11.5 12 3"/><g id="k"><g id="l"><polygon id="m" class="p" points="12 3 17.1 13.8 12 9.7 6.9 13.8 12 3"/></g></g></g></g></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 586 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><defs><style>.o{opacity:0;stroke-width:1.2px;}.o,.p{fill:none;stroke:#ffdf24;}.q{fill:#ffdf24;fill-rule:evenodd;}</style></defs><g id="c"><g id="d"><g id="e"><g id="f"><g id="g"><g id="h"><rect id="i" class="o" x=".6" y=".6" width="22.8" height="22.8" rx="2" ry="2"/><g id="j"><polygon id="k" class="p" points="12 3.7 4 11.9 12 20 20 11.9 12 3.7"/><g id="l"><g id="m"><polygon id="n" class="q" points="12 3 17.1 13.3 12 9.5 6.9 13.3 12 3"/></g></g></g></g></g></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 610 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><defs><style>.o{opacity:0;stroke-width:1.2px;}.o,.p{fill:none;stroke:#b00b1f;}.q{fill:#b00b1f;fill-rule:evenodd;}</style></defs><g id="c"><g id="d"><g id="e"><g id="f"><g id="g"><g id="h"><rect id="i" class="o" x=".6" y=".6" width="22.8" height="22.8" rx="2" ry="2"/><g id="j"><polygon id="k" class="p" points="12 3 4 11.5 12 20 20 11.5 12 3"/><g id="l"><g id="m"><polygon id="n" class="q" points="12 3 17.1 13.8 12 9.7 6.9 13.8 12 3"/></g></g></g></g></g></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 606 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><defs><style>.o{opacity:0;stroke-width:1.2px;}.o,.p{fill:none;stroke:#2b4acb;}.q{fill:#2b4acb;fill-rule:evenodd;}</style></defs><g id="c"><g id="d"><g id="e"><g id="f"><g id="g"><g id="h"><rect id="i" class="o" x=".6" y=".6" width="22.8" height="22.8" rx="2" ry="2"/><g id="j"><polygon id="k" class="p" points="12 4 4 12.5 12 21 20 12.5 12 4"/><g id="l"><g id="m"><polygon id="n" class="q" points="12 4 17.1 14.8 12 10.7 6.9 14.8 12 4"/></g></g></g></g></g></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 607 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><defs><style>.o{fill:#1500ff;}.p{fill:#ececec;fill-rule:evenodd;}.q{fill:none;stroke:#ececec;}</style></defs><g id="c"><g id="d"><g id="e"><g id="f"><g id="g"><g id="h"><rect id="i" class="o" width="24" height="24" rx="2" ry="2"/><g id="j"><g id="k"><g id="l"><polygon id="m" class="p" points="12 4 17.1 14.8 12 10.7 6.9 14.8 12 4"/></g></g><polygon id="n" class="q" points="12 4 4 12.5 12 21 20 12.5 12 4"/></g></g></g></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 570 B

View File

@ -1,7 +0,0 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg t="1693200786104" class="icon" viewBox="0 0 1024 1024" version="1.1"
xmlns="http://www.w3.org/2000/svg" p-id="7178" width="256" height="256"
xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M389.03333333 0H676.33333333v1023.9H389.03333333z" fill="#ffffff" p-id="7179"></path>
</svg>

Before

Width:  |  Height:  |  Size: 443 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1,10 +0,0 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg t="1693201455124" class="icon" viewBox="0 0 1024 1024" version="1.1"
xmlns="http://www.w3.org/2000/svg" p-id="9781" width="512" height="512"
xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M154.64448633 60.60726526h112.85069721v902.78546947H154.64448633zM756.50481646 60.60726526h112.85069721v902.78546947H756.50481646z"
fill="#ffffff" p-id="9782" data-spm-anchor-id="a313x.search_index.0.i48.24ff3a81RzdsdX"
class="selected"></path>
</svg>

Before

Width:  |  Height:  |  Size: 626 B

View File

@ -62,6 +62,7 @@ open class RenderEntity() : RealmObject(), Parcelable {
var zoomMin: Int = 18 //显示最小级别
var zoomMax: Int = 23 //显示最大级别
var enable:Int = 0 // 默认0不是显示 1为渲染显示 2为常显
var catchEnable:Int = 0 // 0捕捉 1不捕捉
constructor(name: String) : this() {
this.name = name