mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-07-16 00:37:21 +02:00
98 lines
4.4 KiB
Vue
98 lines
4.4 KiB
Vue
<template>
|
||
<DefaultLayout>
|
||
<v-container class="narrow-text">
|
||
<h1>Terms of Service for DeFlock</h1>
|
||
<p>Effective Date: <b>12/26/2024</b></p>
|
||
|
||
<p>
|
||
Welcome to DeFlock. By accessing or using our site, you agree to these Terms of Service. If you do not agree, please refrain from using DeFlock.
|
||
</p>
|
||
|
||
<h2>
|
||
1. About DeFlock
|
||
</h2>
|
||
<p>
|
||
DeFlock provides access to map data sourced from OpenStreetMap (OSM). Our platform allows users to view maps and provides examples of OSM tags for contributing Automatic License Plate Recognition (ALPR) data or other information to OSM.
|
||
</p>
|
||
|
||
<h2>
|
||
2. User Responsibilities
|
||
</h2>
|
||
<h3>
|
||
2.1 Tagging Guidance
|
||
</h3>
|
||
<p>
|
||
While DeFlock provides examples of OSM tags that may be relevant for your contributions, it is the user’s responsibility to ensure the accuracy and appropriateness of the tags used when uploading to OSM. DeFlock is not liable for any consequences arising from incorrect or inappropriate tagging.
|
||
</p>
|
||
|
||
<h3>
|
||
2.2 Prohibited Uses
|
||
</h3>
|
||
<p>
|
||
DeFlock must not be used for any of the following purposes:
|
||
</p>
|
||
|
||
<ul class="serif">
|
||
<li>Locating specific nodes, ways, or relations on OpenStreetMap for the purpose of vandalism, including deleting accurate information or modifying it to be false or misleading.</li>
|
||
<li>Scraping, harvesting, or systematically collecting data from DeFlock or OpenStreetMap in violation of their terms or for unauthorized purposes.</li>
|
||
<li>Impersonating other contributors or providing false information when contributing to OpenStreetMap.</li>
|
||
<li>Using DeFlock or its guidance to create commercial products or services without proper attribution or compliance with OpenStreetMap's licensing terms.</li>
|
||
<li>Attempting to disrupt or interfere with the functionality of DeFlock, including through hacking, reverse engineering, or introducing malicious software.</li>
|
||
<li>Using DeFlock in ways that promote hate speech, harassment, or illegal activities.</li>
|
||
</ul>
|
||
|
||
<p>
|
||
By using DeFlock, you agree to comply with all applicable laws and regulations.
|
||
</p>
|
||
|
||
<h2>
|
||
3. Third-Party Services
|
||
</h2>
|
||
<p>
|
||
DeFlock integrates with OpenStreetMap, and any interactions with OSM are governed by their terms of use. DeFlock is not responsible for the collection, storage, or use of data by OSM or any third-party services. For more information, please review the OpenStreetMap Terms of Use.
|
||
</p>
|
||
|
||
<h2>4. Disclaimer of Liability</h2>
|
||
<p>
|
||
DeFlock is provided "as is" without warranties of any kind. We do not guarantee the accuracy, reliability, or completeness of any map data or tagging guidance provided. DeFlock is not liable for any issues arising from:
|
||
</p>
|
||
|
||
<ul class="serif">
|
||
<li>The accuracy or use of data sourced from OpenStreetMap.</li>
|
||
<li>Contributions made to OpenStreetMap, including tagging errors or disputes.</li>
|
||
<li>Any unauthorized or prohibited use of our platform.</li>
|
||
</ul>
|
||
|
||
<h2>5. Intellectual Property</h2>
|
||
<p>
|
||
All content provided by DeFlock, including design, text, and logos, is the intellectual property of DeFlock unless otherwise noted. Users may not copy, distribute, or modify this content without prior written permission.
|
||
</p>
|
||
<p>
|
||
DeFlock's source code is licensed under the MIT License. For details, please refer to the <a target="_blank" href="https://github.com/FoggedLens/deflock?tab=MIT-1-ov-file#readme">LICENSE file</a>.
|
||
</p>
|
||
|
||
<h2>6. Termination of Use</h2>
|
||
<p>
|
||
We reserve the right to suspend or terminate access to DeFlock at our sole discretion if we believe a user has violated these Terms of Service.
|
||
</p>
|
||
|
||
<h2>7. Changes to the Terms of Service</h2>
|
||
<p>
|
||
DeFlock reserves the right to update or modify these Terms of Service at any time. Changes will be effective upon posting to our website. Continued use of DeFlock constitutes acceptance of the updated terms.
|
||
</p>
|
||
|
||
<h2>8. Contact Us</h2>
|
||
<p>
|
||
If you have any questions or concerns regarding these Terms of Service, please contact us at:
|
||
</p>
|
||
<p>
|
||
Email: <a href="mailto:contact@deflock.me">contact@deflock.me</a>
|
||
</p>
|
||
</v-container>
|
||
</DefaultLayout>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import DefaultLayout from '@/layouts/DefaultLayout.vue';
|
||
</script>
|