Skip to content

Commit

Permalink
Added android permissions to readme (fleaflet#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
syonip authored Apr 3, 2020
1 parent 1f6e04b commit 09819a3
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

A Dart implementation of [Leaflet] for Flutter apps.

## Usage
## Installation

Add flutter_map to your pubspec:

Expand All @@ -14,6 +14,16 @@ dependencies:
flutter_map: any # or the latest version on Pub
```
### Android
Ensure the following permission is present in your Android Manifest file, located in `<project root>/android/app/src/main/AndroidManifest.xml`:

```xml
<uses-permission android:name="android.permission.INTERNET"/>
```

## Usage

Configure the map using `MapOptions` and layer options:

```dart
Expand Down

0 comments on commit 09819a3

Please sign in to comment.