pt2121 / EVMap

Android app to find electric vehicle charging stations - compatible with community databases such as GoingElectric.de and OpenChargeMap.org.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EVMap Build Status

Logo

Android app to find electric vehicle charging stations.

Get it on Google Play Get it on F-Droid

Features

  • Material Design
  • Shows all charging stations from the community-maintained GoingElectric.de and Open Charge Map directories
  • Realtime availability information (only in Europe)
  • Search for places
  • Advanced filtering options, including saved filter profiles
  • Favorites list, also with availability information
  • Integrated price comparison using Chargeprice.app (only in Europe)
  • Android Auto integration
  • No ads, fully open source
  • Compatible with Android 5.0 and above
  • Can use Google Maps or Mapbox (OpenStreetMap) as map backends - the version available on F-Droid only uses Mapbox.

Screenshots

Screenshot 1Screenshot 2

Development setup

The App is developed using Android Studio.

For testing the app, you need to obtain free API Keys for the GoingElectric API, the Chargeprice API, the OpenChargeMap API, as well as for Google APIs ("Maps SDK for Android" and "Places API" need to be activated) and/or Mapbox. 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:

<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>

About

Android app to find electric vehicle charging stations - compatible with community databases such as GoingElectric.de and OpenChargeMap.org.

License:MIT License


Languages

Language:Kotlin 90.4%Language:Java 9.4%Language:Ruby 0.2%