Privacy Policy

1. Introduction

This Privacy Policy describes how we collect, use, and protect your personal information when you use our chatbot, which interacts with the Gemini AI API and stores your questions in our database.

2. Information Collected

When using our chatbot, we collect the following types of information:

  • Conversation Information: All messages you send and receive through the chatbot.
  • Identification Data: We may collect data such as IP address and geographic location information.

3. Use of Information

The information collected is used for the following purposes:

  • Interaction with the AI API: Your messages are sent to the Gemini API to generate appropriate responses.
  • Question Storage: Your questions are stored in our database for analysis and service improvement purposes.

4. Information Sharing

We do not share your personal information with third parties, except in the following cases:

  • Service Providers: We may share information with vendors who help us operate our service, such as the Gemini API.
  • Legal Compliance: We may disclose information to comply with legal obligations or respond to legal processes.

5. Information Security

We implement appropriate security measures to protect your information from unauthorized access, alteration, disclosure, or destruction. These measures include:

  • Encryption: Use of encryption to protect data in transit.
  • Restricted Access: Access to information is limited to employees and partners who need this information to operate our service.

6. Your Rights

You have the right to:

  • Access and Correct: Request access to your personal information and correct inaccurate data.
  • Delete Data: Request the deletion of your personal information, subject to certain conditions.
  • Withdraw Consent: Withdraw your consent to the processing of your personal information.

7. Changes to the Privacy Policy

We reserve the right to update this Privacy Policy at any time. We will notify you of any significant changes through our website or other appropriate communication channels.

8. Contact

If you have any questions about this Privacy Policy, please contact us at [email protected]

9. Consent

By using our service, you agree to the collection and use of your information as described in this Privacy Policy.

This Privacy Policy has been created to ensure that your personal information is treated with security and respect. We appreciate your trust and are committed to protecting your privacy.

Map Display

First steps

Import the Javascript API

The Maplink’s Javascript API is publicly available at the url https://maps.maplink.global, and can be included in any web page easily with a tag script:

<script src="https://maps.maplink.global"></script>

Create map object

With the API already imported, all you need to do to render a map is define a div element on your page, and create an instance of the MaplinkMap class associated with this element.

The class constructor waits for two mandatory arguments: the Maplink api key (client_id used for API authentication), and the id of the div element where the map will be rendered.

<div id="map"></div>
<script>
const apiKey = "[CHAVE DE API]";
const maplink = new MaplinkMap(apiKey, "map");
</script>

A third settings argument can optionally be passed when building the map. This argument must be an object, where each property corresponds to a configuration definition.

The options available are:

  • renderType – Accepts string values "pbf" and "png". Selects the format in which the map tiles will be sent by the server. By default, the format is protobuf (pbf), which uses the browser’s graphics acceleration feature via the WebGL API. In environments without WebGL support, the png option must be set, otherwise the map cannot be rendered.
  • center – Array with coordinates to define the center point in the initial rendering of the map.
  • zoom – Integer that defines the initial zoom level. This value is passed directly to the Leaflet instance associated with the map. More information can be found at the link: Zoom levels – Leaflet.
  • theme – Theme in which the map will be displayed. The available options are: "maplink-custom"(default) and "basic-preview".

Below is an example of initializing the map with optional parameters:

const options = {
  renderType: "pbf",
  center: [-23.545344, -46.657384],
  zoom: 17,
  theme: "maplink-custom"
};

const map = new MaplinkMap(apiKey, "map", options);