Skip to content

Latest commit

 

History

History
165 lines (125 loc) · 6.77 KB

api_keys.md

File metadata and controls

165 lines (125 loc) · 6.77 KB

API keys required for testing EVMap

EVMap uses multiple different data sources, most of which require an API key. These API keys need to be put into the app in the form of a resource file called apikeys.xml under app/src/main/res/values, with the following content:

apikeys.xml content
<resources>
   <string name="google_maps_key" templateMergeStrategy="preserve" translatable="false">
      insert your Google Maps key here
   </string>
   <string name="mapbox_key" translatable="false">
      insert your Mapbox key here
   </string>
   <string name="goingelectric_key" translatable="false">
      insert your GoingElectric key here
   </string>
   <string name="chargeprice_key" translatable="false">
      insert your Chargeprice key here
   </string>
   <string name="openchargemap_key" translatable="false">
      insert your OpenChargeMap key here
   </string>
</resources>

Not all API keys are strictly required if you only want to work on certain parts of the app. For example, you can choose only one of the map providers and one of the charging station databases. The Chargeprice API key is also only required if you want to test the price comparison feature.

All API keys are available for free. Some APIs require payment above a certain limit, but the free tier should be plenty for local testing and development.

Below you find a list of all the services and how to obtain the API keys.

Map providers

The different Map SDKs are wrapped by our fork of the AnyMaps library to provide a common API. The google build flavor of the app includes both Google Maps and Mapbox and allows the user to switch between the two, while the foss flavor only includes the Mapbox SDK.

⚠️ When testing the app using the Android Emulator, we recommend using Google Maps and not Mapbox, as the latter has issues displaying the markers. It works fine on real Android devices.

Google Maps

Maps SDK for Android, Places API

How to obtain an API key
  1. Log in to the Google API console with your Google account
  2. Create a new project, or select an existing one that you want to use
  3. Under APIs & Services → Library, enable the Maps SDK for Android and Places API.
  4. Under APIs & Services → Credentials, click on Create credentials → API Key
  5. Copy the displayed key to your apikeys.xml file.

Mapbox

Maps SDK for Android

How to obtain an API key
  1. Sign up for a Mapbox account
  2. Under Access Tokens, create a new access token
  3. Set a name for the scope and enable only the preselected public scopes. Do not restrict the token to a specific URL (this setting is not compatible with Android apps)

Charging station databases

GoingElectric.de

GoingElectric.de provides an API for their community-maintained directory of charging stations. The website and data are mostly only available in German.

How to obtain an API key
  1. Sign up for an account in the GoingElectric.de forum. The registration page can be switched to English using the dropdown menu under "Sprache". Then, agree to the registration terms.
  2. Fill in your desired username, password and email address and submit the registration form. You do not need to fill the information under GoingElectric Usermap.
  3. Verify your account by clicking on the link in the email you received
  4. Log in to the GoingElectric forum
  5. Go to this link to request access to the API. This page is only available in German. You need to fill in the following data:
    • name / company (Name / Firma)
    • street address (Straße, Nr.)
    • postal code, town (Postleitzahl, Ort)
    • country (Land)
    • email address (E-Mail Adresse)
    • website (Webseite, optional)
    • phone number (Telefonnummer, optional)
    • name of the app (Name der App): EVMap
    • app website (Webseite der App): https://github.com/johan12345/EVMap
    • description (kurze Beschreibung der App): please explain that you would like to contribute to the development of EVMap and therefore need access to the GoingElectric.de API.
    • Referrer (Herkunft): leave this field blank!
  6. When your access to the API is approved, you can access the API console to retrieve your API key.

OpenChargeMap

API documentation

How to obtain an API key
  1. Sign up for an account at OpenChargeMap
  2. Go to the My Apps page and click Register an application
  3. Enter the name of the app (EVMap) and website (https://github.com/johan12345/EVMap), and in the description field describe that you would like to contribute to the development of EVMap and therefore need access to the OpenChargeMap API. Do not tick the List App in Public Showcase box. Then, click save.
  4. Your API key will appear on the My Apps page.

Pricing providers

Chargeprice.app

API documentation

How to obtain an API key
  1. Check the Pricing page for information on the current plans at Chargeprice. There should be a free tier up to a certain limit of API calls per month.
  2. Contact [email protected], stating that you would like to contribute to the development the open source EVMap app and therefore need access to the Chargeprice API for testing.
  3. When your access to the API is approved, you will receive an API key via email.