import React, { Component } from 'react';
import PropTypes from "prop-types"

export default class google_maps extends Component {
    render() {
        return (
            <div>
                <h3>Google Maps</h3>
                <p>This site uses the Google Maps map service via an API. It is operated by Google Inc., 1600 Amphitheatre Parkway, Mountain
                    View, CA 94043, USA.</p>
                <p>To use Google Maps, it is necessary to save your IP address. This information is generally transmitted to a Google server
                    in the USA and stored there. The provider of this site has no influence on this data transfer.</p>
                <p>The use of Google Maps is in the interest of making our website appealing and to facilitate the location of places specified
                    by us on the website. This constitutes a justified interest pursuant to Art. 6 (1) (f) DSGVO.</p>
                <p>Further information about handling user data, can be found in the data protection declaration of Google at
                    <a href="https://www.google.de/intl/de/policies/privacy/"
                        target="_blank">https://www.google.de/intl/de/policies/privacy/</a>.</p>
            </div>
        );
    }
}