adding some resources back - previous clean-up went too far

This commit is contained in:
y20k 2020-01-09 13:46:50 +01:00
parent d8800ea47e
commit d704793ff1
No known key found for this signature in database
GPG key ID: 824D4259F41FAFF6
17 changed files with 385 additions and 35 deletions

View file

@ -2,6 +2,7 @@
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/root_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

View file

@ -6,6 +6,7 @@
android:layout_height="wrap_content">
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/dialog_rename_track_input_layout"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View file

@ -42,6 +42,7 @@
app:tint="@color/trackbook_white" />
<com.google.android.material.card.MaterialCardView
android:id="@+id/fab_sub_menu_label_save"
style="@style/Widget.MaterialComponents.CardView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -90,6 +91,7 @@
app:tint="@color/trackbook_white" />
<com.google.android.material.card.MaterialCardView
android:id="@+id/fab_sub_menu_label_clear"
style="@style/Widget.MaterialComponents.CardView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -137,6 +139,7 @@
app:tint="@color/trackbook_white" />
<com.google.android.material.card.MaterialCardView
android:id="@+id/fab_sub_menu_label_resume"
style="@style/Widget.MaterialComponents.CardView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View file

@ -8,9 +8,6 @@
tools:context=".MainActivity">
<!-- OSM MAP -->
<!-- BOTTOM SHEET -->
<org.osmdroid.views.MapView
android:id="@+id/map"
android:layout_width="match_parent"
@ -23,6 +20,7 @@
</org.osmdroid.views.MapView>
<!-- BOTTOM SHEET -->
<androidx.core.widget.NestedScrollView
android:id="@+id/statistics_sheet"
android:layout_width="@dimen/bottom_sheet_width"

View file

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/app_window_background"
tools:context=".TracklistFragment">
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/app_window_background"
tools:context=".TracklistFragment">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/track_element_list"
@ -30,4 +30,3 @@
</androidx.constraintlayout.widget.ConstraintLayout>

View file

@ -62,5 +62,3 @@
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>

View file

@ -45,4 +45,3 @@
app:layout_constraintTop_toBottomOf="@+id/trackbook_icon" />
</androidx.constraintlayout.widget.ConstraintLayout>

View file

@ -307,4 +307,4 @@
tools:text="@string/sample_text_default_data" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -1,7 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main_nav_graph.xml"
app:startDestination="@id/map_fragment">
<!-- MAP -->
@ -10,9 +11,14 @@
android:name="org.y20k.trackbook.MapFragment"
android:label="Map"
tools:layout="@layout/fragment_map">
<action app:destination="@id/settings_fragment" />
<action app:destination="@id/tracklist_fragment" />
<action
android:id="@+id/action_map_fragment_to_settings_fragment"
app:destination="@id/settings_fragment" />
<action
android:id="@+id/action_map_fragment_to_tracks_fragment"
app:destination="@id/tracklist_fragment" />
<action
android:id="@+id/action_map_fragment_to_fragment_track"
app:destination="@id/fragment_track"
app:popUpToInclusive="false" />
</fragment>
@ -29,7 +35,9 @@
android:name="org.y20k.trackbook.TracklistFragment"
android:label="Tracks"
tools:layout="@layout/fragment_tracklist">
<action app:destination="@id/fragment_track" />
<action
android:id="@+id/action_tracks_fragment_to_fragment_track"
app:destination="@id/fragment_track" />
</fragment>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View file

@ -5,7 +5,7 @@
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" id="svg2" xml:space="preserve"
width="108pt" height="108pt" viewBox="0 0 144.00001 144.00001" sodipodi:docname="trackbook-app-icon-current.svg"
inkscape:version="0.92.4 5da689c313, 2019-01-14" inkscape:export-filename="/Users/solaris/Desktop/trackbook/assets/trackbook-app-icon-current-background.png"
inkscape:version="0.92.2 5c3e80d, 2017-08-06" inkscape:export-filename="/Users/solaris/Desktop/trackbook2/assets/trackbook-app-icon-current-foreground.png"
inkscape:export-xdpi="600" inkscape:export-ydpi="600"><metadata
id="metadata8"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
@ -290,7 +290,7 @@
id="g390"><g
transform="matrix(75,0,0,411,260,31)"
id="g388"><image
sodipodi:absref="/home/solaris/Desktop/trackbook/assets/app-icon-5_img0.png"
sodipodi:absref="/Users/solaris/Desktop/trackbook2/assets/app-icon-5_img0.png"
xlink:href="app-icon-5_img0.png"
width="1"
height="1"
@ -367,7 +367,32 @@
in2="offset"
operator="over"
result="composite2"
id="feComposite1823" /></filter></defs><sodipodi:namedview
id="feComposite1823" /></filter><filter
style="color-interpolation-filters:sRGB;"
inkscape:label="Drop Shadow"
id="filter1262"><feFlood
flood-opacity="1"
flood-color="rgb(65,65,65)"
result="flood"
id="feFlood1252" /><feComposite
in="flood"
in2="SourceGraphic"
operator="in"
result="composite1"
id="feComposite1254" /><feGaussianBlur
in="composite1"
stdDeviation="14.8"
result="blur"
id="feGaussianBlur1256" /><feOffset
dx="0"
dy="-15"
result="offset"
id="feOffset1258" /><feComposite
in="SourceGraphic"
in2="offset"
operator="over"
result="composite2"
id="feComposite1260" /></filter></defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
@ -376,17 +401,17 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1501"
inkscape:window-height="1259"
inkscape:window-width="2173"
inkscape:window-height="1301"
id="namedview4"
showgrid="false"
inkscape:zoom="6.61"
inkscape:cx="10.3591"
inkscape:cy="70.388666"
inkscape:window-x="74"
inkscape:window-y="27"
inkscape:zoom="3.8"
inkscape:cx="23.589482"
inkscape:cy="115.78138"
inkscape:window-x="111"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="layer2"
inkscape:current-layer="layer3"
units="pt"
showguides="true"
inkscape:guide-bbox="true"
@ -397,7 +422,7 @@
inkscape:groupmode="layer"
id="layer3"
inkscape:label="background "
style="display:inline"><rect
style="display:none"><rect
inkscape:label="red square"
y="6.6613381e-15"
x="0"
@ -419,7 +444,7 @@
inkscape:label="cicular stencil" /></g><g
id="g965"
inkscape:label="book cover"
style="display:inline;opacity:1"
style="display:none;opacity:1"
sodipodi:insensitive="true"><rect
style="display:inline;opacity:0.744;fill:#3c4043;fill-opacity:1;stroke:none;stroke-width:0.12084813;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.07843137;filter:url(#filter1825)"
id="rect1813"
@ -449,9 +474,9 @@
rx="3"
ry="3" /></g><g
inkscape:groupmode="layer"
style="display:inline"
style="display:none"
transform="matrix(1.3333333,0,0,-1.3333333,-14,158.00002)"
inkscape:label="book pages"
inkscape:label="book pages colored"
id="g1138"><g
transform="matrix(0.1028593,0,0,0.10311016,38.168066,35.957148)"
style="display:inline"
@ -584,6 +609,319 @@
id="path1130"
inkscape:connector-curvature="0"
inkscape:label="shaddow left" /></g></g></g></g><g
id="g1024"
inkscape:label="book pages light"
transform="matrix(1.3333333,0,0,-1.3333333,-14,158.00002)"
style="display:none"
inkscape:groupmode="layer"><g
id="g994"
inkscape:label="right page"
style="display:none"
transform="matrix(0.1028593,0,0,0.10311016,38.168066,35.957148)"><g
id="g992"
clip-path="url(#clipPath196)"
inkscape:label="right page"><g
id="g970"
transform="translate(434.7939,455.7749)"
style="display:inline"
inkscape:label="background right"><path
d="m 0,0 -64.936,-11.863 -92.508,-16.901 -21.35,-3.901 V -55.757 -336.726 -359.82 L -64.936,-339.017 0,-327.156 c 11.79,2.155 21.348,14.24 21.348,26.995 V -19.193 C 21.348,-6.439 11.79,2.154 0,0"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path968"
inkscape:connector-curvature="0"
inkscape:label="background right" /></g><g
id="g974"
transform="translate(261.4482,148.6699)"
style="display:inline"
inkscape:label="meaddow right"><path
d="M 0,0 -5.448,1.597 V -29.621 -52.715 L 89.298,-35.404 25.462,-7.977 Z"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path972"
inkscape:connector-curvature="0"
inkscape:label="meaddow right" /></g><g
id="g978"
transform="translate(348.0654,301.25)"
style="display:inline"
inkscape:label="house"><path
d="M 0,0 48.7,5.771 46.365,-33.867 -2.112,-38.513 Z"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path976"
inkscape:connector-curvature="0"
inkscape:label="house" /></g><g
id="g982"
transform="translate(296.3809,369.0981)"
style="display:inline"
inkscape:label="small street right"><path
d="M 0,0 -40.381,-11.812 V -33.219 L 12.81,-16.711 98.737,8.416 159.761,26.475 V 47.6 L 99.092,29.842 Z"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path980"
inkscape:connector-curvature="0"
inkscape:label="small street right" /></g><g
id="g986"
transform="translate(437.5918,129.335)"
style="display:inline"
inkscape:label="street right"><path
d="m 0,0 c 0.149,0.047 0.302,0.094 0.453,0.144 3.876,1.349 7.409,3.765 10.305,6.87 0.006,0.006 0.012,0.013 0.017,0.018 0.229,0.246 0.451,0.497 0.672,0.75 0.032,0.039 0.071,0.078 0.104,0.118 0.181,0.211 0.355,0.427 0.532,0.644 0.068,0.086 0.14,0.169 0.208,0.255 l -36.795,18.08 -48.389,19.835 -54.086,20.332 -54.613,17.858 V 45.735 l 41.805,-14.512 64.579,-23.229 34.887,-15.564 37.523,6.854 c 0.735,0.136 1.465,0.31 2.182,0.519 C -0.408,-0.137 -0.207,-0.066 0,0"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path984"
inkscape:connector-curvature="0"
inkscape:label="street right" /></g><g
inkscape:label="shaddow right"
style="display:none"
transform="translate(434.7939,455.7749)"
id="g990"><path
inkscape:label="shaddow right"
inkscape:connector-curvature="0"
id="path988"
style="display:inline;fill:#17181a;fill-opacity:0.0627451;fill-rule:nonzero;stroke:none"
d="M -178.794,-32.665 V -55.757 -336.726 -359.82 L -64.936,-339.017 0,-327.156 c 11.79,2.155 21.348,14.24 21.348,26.995"
sodipodi:nodetypes="ccccccc" /></g></g></g><g
id="g1022"
style="display:none"
inkscape:label="left page"
transform="matrix(0.1028593,0,0,0.10311016,38.168066,35.957148)"><g
id="g1020"
clip-path="url(#clipPath302)"
inkscape:label="left page"><g
id="g1002"
transform="translate(256,400.0176)"
style="display:inline"
inkscape:label="background left"><path
d="m 0,0 v 23.093 0 l -113.858,20.802 v 0 l -64.935,11.862 c -11.791,2.154 -21.349,-6.439 -21.349,-19.193 v -280.967 c 0,-12.755 9.558,-24.841 21.349,-26.995 l 64.935,-11.862 92.51,-16.9 L 0,-304.062 v 23.093 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path1000"
inkscape:connector-curvature="0"
inkscape:label="background left" /></g><g
id="g1006"
transform="translate(256,150.2666)"
style="display:inline"
inkscape:label="meaddow left"><path
d="m 0,0 -59.264,39.026 -20.014,11.354 -47.144,24.371 -24.24,12.727 -49.146,23.051 V 1.236 c 0.442,-2.782 1.319,-5.482 2.547,-7.996 0.003,-0.009 0.007,-0.013 0.011,-0.02 0.303,-0.62 0.628,-1.23 0.973,-1.824 0.008,-0.014 0.017,-0.029 0.025,-0.042 1.039,-1.786 2.26,-3.455 3.629,-4.968 0.025,-0.026 0.048,-0.052 0.072,-0.079 0.432,-0.474 0.882,-0.931 1.342,-1.372 0.05,-0.05 0.101,-0.096 0.151,-0.145 0.456,-0.43 0.923,-0.845 1.404,-1.24 0.051,-0.043 0.104,-0.083 0.155,-0.125 0.495,-0.403 1,-0.787 1.518,-1.15 0.016,-0.01 0.031,-0.02 0.046,-0.031 0.519,-0.361 1.051,-0.7 1.592,-1.021 0.038,-0.021 0.076,-0.047 0.115,-0.07 0.523,-0.306 1.058,-0.589 1.598,-0.854 0.084,-0.039 0.167,-0.081 0.25,-0.121 0.527,-0.25 1.064,-0.482 1.606,-0.691 0.096,-0.037 0.191,-0.071 0.286,-0.107 0.55,-0.204 1.105,-0.391 1.668,-0.551 0.075,-0.021 0.153,-0.039 0.227,-0.062 0.594,-0.161 1.194,-0.303 1.8,-0.414 l 64.935,-11.862 92.51,-16.9 L 0,-54.312 v 23.094 z"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path1004"
inkscape:connector-curvature="0"
inkscape:label="meaddow left" /></g><g
id="g1010"
transform="translate(248.8809,336.2715)"
inkscape:label="small street left"><path
d="m 0,0 7.119,-0.392 v 21.407 l -6.942,0.506 -85.215,5.369 -51.059,-12.226 -26.151,-25.628 -2.846,-10.257 18.679,-8.993 1.602,6.13 19.213,18.164 43.23,12.116 z"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path1008"
inkscape:connector-curvature="0"
inkscape:label="small street left" /></g><g
id="g1014"
transform="translate(157.085,237.96)"
style="display:inline"
inkscape:label="street left"><path
d="M 0,0 70.627,-42.731 98.915,-62.89 v 39.169 l -0.89,0.617 L 52.126,6.45 10.853,31.117 -55.15,70.119 l -18.145,8.895 -27.932,9.367 V 51.063 l 30.243,-9.612 z"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path1012"
inkscape:connector-curvature="0"
inkscape:label="street left" /></g><g
inkscape:label="shaddow left"
style="display:inline"
transform="translate(256,400.0176)"
id="g1018"><path
inkscape:label="shaddow left"
inkscape:connector-curvature="0"
id="path1016"
style="fill:#17181a;fill-opacity:0.1254902;fill-rule:nonzero;stroke:none"
d="m 0,0 v 23.093 0 l -113.858,20.802 v 0 l -64.935,11.862 c -11.791,2.154 -21.349,-6.439 -21.349,-19.193 v -280.967 c 0,-12.755 9.558,-24.841 21.349,-26.995 l 64.935,-11.862 92.51,-16.9 L 0,-304.062 v 23.093 z" /></g></g></g></g><g
inkscape:groupmode="layer"
style="display:none"
transform="matrix(1.3333333,0,0,-1.3333333,-14,158.00002)"
inkscape:label="book pages light inverted"
id="g1078"><g
transform="matrix(0.1028593,0,0,0.10311016,38.168066,35.957148)"
style="display:inline"
inkscape:label="right page"
id="g1052"><g
inkscape:label="right page"
clip-path="url(#clipPath196)"
id="g1050"><g
inkscape:label="background right"
style="display:inline"
transform="translate(434.7939,455.7749)"
id="g1028"><path
inkscape:label="background right"
inkscape:connector-curvature="0"
id="path1026"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 -64.936,-11.863 -92.508,-16.901 -21.35,-3.901 V -55.757 -336.726 -359.82 L -64.936,-339.017 0,-327.156 c 11.79,2.155 21.348,14.24 21.348,26.995 V -19.193 C 21.348,-6.439 11.79,2.154 0,0" /></g><g
inkscape:label="meaddow right"
style="display:inline"
transform="translate(261.4482,148.6699)"
id="g1032"><path
inkscape:label="meaddow right"
inkscape:connector-curvature="0"
id="path1030"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 0,0 -5.448,1.597 V -29.621 -52.715 L 89.298,-35.404 25.462,-7.977 Z" /></g><g
inkscape:label="house"
style="display:inline"
transform="translate(348.0654,301.25)"
id="g1036"><path
inkscape:label="house"
inkscape:connector-curvature="0"
id="path1034"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 0,0 48.7,5.771 46.365,-33.867 -2.112,-38.513 Z" /></g><g
inkscape:label="small street right"
style="display:inline"
transform="translate(296.3809,369.0981)"
id="g1040"><path
inkscape:label="small street right"
inkscape:connector-curvature="0"
id="path1038"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 0,0 -40.381,-11.812 V -33.219 L 12.81,-16.711 98.737,8.416 159.761,26.475 V 47.6 L 99.092,29.842 Z" /></g><g
inkscape:label="street right"
style="display:inline"
transform="translate(437.5918,129.335)"
id="g1044"><path
inkscape:label="street right"
inkscape:connector-curvature="0"
id="path1042"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 c 0.149,0.047 0.302,0.094 0.453,0.144 3.876,1.349 7.409,3.765 10.305,6.87 0.006,0.006 0.012,0.013 0.017,0.018 0.229,0.246 0.451,0.497 0.672,0.75 0.032,0.039 0.071,0.078 0.104,0.118 0.181,0.211 0.355,0.427 0.532,0.644 0.068,0.086 0.14,0.169 0.208,0.255 l -36.795,18.08 -48.389,19.835 -54.086,20.332 -54.613,17.858 V 45.735 l 41.805,-14.512 64.579,-23.229 34.887,-15.564 37.523,6.854 c 0.735,0.136 1.465,0.31 2.182,0.519 C -0.408,-0.137 -0.207,-0.066 0,0" /></g><g
id="g1048"
transform="translate(434.7939,455.7749)"
style="display:none"
inkscape:label="shaddow right"><path
sodipodi:nodetypes="ccccccc"
d="M -178.794,-32.665 V -55.757 -336.726 -359.82 L -64.936,-339.017 0,-327.156 c 11.79,2.155 21.348,14.24 21.348,26.995"
style="display:inline;fill:#17181a;fill-opacity:0.0627451;fill-rule:nonzero;stroke:none"
id="path1046"
inkscape:connector-curvature="0"
inkscape:label="shaddow right" /></g></g></g><g
transform="matrix(0.1028593,0,0,0.10311016,38.168066,35.957148)"
inkscape:label="left page"
style="display:inline"
id="g1076"><g
inkscape:label="left page"
clip-path="url(#clipPath302)"
id="g1074"><g
inkscape:label="background left"
style="display:inline"
transform="translate(256,400.0176)"
id="g1056"><path
inkscape:label="background left"
inkscape:connector-curvature="0"
id="path1054"
style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 v 23.093 0 l -113.858,20.802 v 0 l -64.935,11.862 c -11.791,2.154 -21.349,-6.439 -21.349,-19.193 v -280.967 c 0,-12.755 9.558,-24.841 21.349,-26.995 l 64.935,-11.862 92.51,-16.9 L 0,-304.062 v 23.093 z" /></g><g
inkscape:label="meaddow left"
style="display:inline"
transform="translate(256,150.2666)"
id="g1060"><path
inkscape:label="meaddow left"
inkscape:connector-curvature="0"
id="path1058"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 -59.264,39.026 -20.014,11.354 -47.144,24.371 -24.24,12.727 -49.146,23.051 V 1.236 c 0.442,-2.782 1.319,-5.482 2.547,-7.996 0.003,-0.009 0.007,-0.013 0.011,-0.02 0.303,-0.62 0.628,-1.23 0.973,-1.824 0.008,-0.014 0.017,-0.029 0.025,-0.042 1.039,-1.786 2.26,-3.455 3.629,-4.968 0.025,-0.026 0.048,-0.052 0.072,-0.079 0.432,-0.474 0.882,-0.931 1.342,-1.372 0.05,-0.05 0.101,-0.096 0.151,-0.145 0.456,-0.43 0.923,-0.845 1.404,-1.24 0.051,-0.043 0.104,-0.083 0.155,-0.125 0.495,-0.403 1,-0.787 1.518,-1.15 0.016,-0.01 0.031,-0.02 0.046,-0.031 0.519,-0.361 1.051,-0.7 1.592,-1.021 0.038,-0.021 0.076,-0.047 0.115,-0.07 0.523,-0.306 1.058,-0.589 1.598,-0.854 0.084,-0.039 0.167,-0.081 0.25,-0.121 0.527,-0.25 1.064,-0.482 1.606,-0.691 0.096,-0.037 0.191,-0.071 0.286,-0.107 0.55,-0.204 1.105,-0.391 1.668,-0.551 0.075,-0.021 0.153,-0.039 0.227,-0.062 0.594,-0.161 1.194,-0.303 1.8,-0.414 l 64.935,-11.862 92.51,-16.9 L 0,-54.312 v 23.094 z" /></g><g
inkscape:label="small street left"
transform="translate(248.8809,336.2715)"
id="g1064"><path
inkscape:label="small street left"
inkscape:connector-curvature="0"
id="path1062"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 0,0 7.119,-0.392 v 21.407 l -6.942,0.506 -85.215,5.369 -51.059,-12.226 -26.151,-25.628 -2.846,-10.257 18.679,-8.993 1.602,6.13 19.213,18.164 43.23,12.116 z" /></g><g
inkscape:label="street left"
style="display:inline"
transform="translate(157.085,237.96)"
id="g1068"><path
inkscape:label="street left"
inkscape:connector-curvature="0"
id="path1066"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 0,0 70.627,-42.731 98.915,-62.89 v 39.169 l -0.89,0.617 L 52.126,6.45 10.853,31.117 -55.15,70.119 l -18.145,8.895 -27.932,9.367 V 51.063 l 30.243,-9.612 z" /></g><g
id="g1072"
transform="translate(256,400.0176)"
style="display:inline"
inkscape:label="shaddow left"><path
d="m 0,0 v 23.093 0 l -113.858,20.802 v 0 l -64.935,11.862 c -11.791,2.154 -21.349,-6.439 -21.349,-19.193 v -280.967 c 0,-12.755 9.558,-24.841 21.349,-26.995 l 64.935,-11.862 92.51,-16.9 L 0,-304.062 v 23.093 z"
style="fill:#17181a;fill-opacity:0.1254902;fill-rule:nonzero;stroke:none"
id="path1070"
inkscape:connector-curvature="0"
inkscape:label="shaddow left" /></g></g></g></g><g
inkscape:groupmode="layer"
style="display:inline"
transform="matrix(1.3333333,0,0,-1.3333333,-14,158.00002)"
inkscape:label="book pages shaddow"
id="g1241"><g
transform="matrix(0.1028593,0,0,0.10311016,38.168066,35.957148)"
style="display:inline"
inkscape:label="book pages shaddow"
id="g1215"><g
inkscape:label="book pages shaddow"
clip-path="url(#clipPath196)"
id="g1213"><g
inkscape:label="book pages shaddow - Edit in Filter Settings"
style="display:inline;filter:url(#filter1262)"
transform="translate(434.7939,455.7749)"
id="g1191"><path
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.13731287"
d="m 46.888672,47.353516 c -1.334224,0.05171 -2.337891,1.147395 -2.337891,2.68164 v 38.628906 c 0,1.753561 1.310649,3.414806 2.927735,3.710938 l 8.90625,1.630859 12.6875,2.322266 L 72,96.865234 87.615234,94.005859 96.521484,92.375 c 1.616949,-0.29627 2.927735,-1.957377 2.927735,-3.710938 V 50.035156 c 0,-1.753422 -1.310786,-2.934804 -2.927735,-2.638672 l -8.90625,1.63086 -12.6875,2.324218 L 72,51.888672 56.384766,49.027344 l -8.90625,-1.63086 c -0.202136,-0.03702 -0.399241,-0.05036 -0.589844,-0.04297 z"
transform="matrix(7.2915139,0,0,-7.2737742,-703.78334,344.75601)"
id="path1189"
inkscape:connector-curvature="0" /></g></g></g></g><g
id="g1055"
inkscape:label="book pages simplified"
transform="matrix(1.3333333,0,0,-1.3333333,-14,158.00002)"
style="display:inline"
inkscape:groupmode="layer"><g
id="g1041"
inkscape:label="right page"
style="display:inline"
transform="matrix(0.1028593,0,0,0.10311016,38.168066,35.957148)"><g
id="g1039"
clip-path="url(#clipPath196)"
inkscape:label="right page"><g
id="g1033"
transform="translate(434.7939,455.7749)"
style="display:inline"
inkscape:label="background right"><path
d="m 0,0 -64.936,-11.863 -92.508,-16.901 -21.35,-3.901 V -55.757 -336.726 -359.82 L -64.936,-339.017 0,-327.156 c 11.79,2.155 21.348,14.24 21.348,26.995 V -19.193 C 21.348,-6.439 11.79,2.154 0,0"
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path1031"
inkscape:connector-curvature="0"
inkscape:label="background right" /></g><g
inkscape:label="shaddow right"
style="display:inline"
transform="translate(434.7939,455.7749)"
id="g1037"><path
inkscape:label="shaddow right"
inkscape:connector-curvature="0"
id="path1035"
style="display:inline;fill:#17181a;fill-opacity:0.01568627;fill-rule:nonzero;stroke:none"
d="M -178.794,-32.665 V -55.757 -336.726 -359.82 L -64.936,-339.017 0,-327.156 c 11.79,2.155 21.348,14.24 21.348,26.995"
sodipodi:nodetypes="ccccccc" /></g></g></g><g
id="g1053"
style="display:inline"
inkscape:label="left page"
transform="matrix(0.1028593,0,0,0.10311016,38.168066,35.957148)"><g
id="g1051"
clip-path="url(#clipPath302)"
inkscape:label="left page"><g
id="g1045"
transform="translate(256,400.0176)"
style="display:inline"
inkscape:label="background left"><path
d="m 0,0 v 23.093 0 l -113.858,20.802 v 0 l -64.935,11.862 c -11.791,2.154 -21.349,-6.439 -21.349,-19.193 v -280.967 c 0,-12.755 9.558,-24.841 21.349,-26.995 l 64.935,-11.862 92.51,-16.9 L 0,-304.062 v 23.093 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path1043"
inkscape:connector-curvature="0"
inkscape:label="background left" /></g><g
inkscape:label="shaddow left"
style="display:inline"
transform="translate(256,400.0176)"
id="g1049"><path
inkscape:label="shaddow left"
inkscape:connector-curvature="0"
id="path1047"
style="fill:#17181a;fill-opacity:0.1254902;fill-rule:nonzero;stroke:none"
d="m 0,0 v 23.093 0 l -113.858,20.802 v 0 l -64.935,11.862 c -11.791,2.154 -21.349,-6.439 -21.349,-19.193 v -280.967 c 0,-12.755 9.558,-24.841 21.349,-26.995 l 64.935,-11.862 92.51,-16.9 L 0,-304.062 v 23.093 z" /></g></g></g></g><g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="save zones"

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 46 KiB