From 27376d48396dc9a8ccbf50f901b5abd156d77752 Mon Sep 17 00:00:00 2001 From: Alexander Sennikov Date: Thu, 16 Jun 2016 22:15:14 +0300 Subject: [PATCH] Update README.md --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5c4ff25..9ad3012 100644 --- a/README.md +++ b/README.md @@ -21,14 +21,18 @@ Simply add something similar to this to your styles: } ``` -In `config/environment.js` you can specify additional Google Maps libraries -to be loaded along with this add-on (check the full list [here](https://developers.google.com/maps/documentation/javascript/libraries)), -optional API key for your application (additional info could be found [here](https://developers.google.com/maps/web/)) and optional explicit protocol setting. +In `config/environment.js` you can specify: +- additional Google Maps libraries to be loaded along with this add-on + (check the full list [here](https://developers.google.com/maps/documentation/javascript/libraries)), +- optional API key for your application (additional info could be found [here](https://developers.google.com/maps/web/)), +- optional language for map localization, +- optional explicit protocol setting. ```javascript ENV['g-map'] = { libraries: ['places', 'geometry'], key: 'your-unique-google-map-api-key', + language: 'ru', protocol: 'https' } ```