Last active
December 24, 2015 07:29
-
-
Save alexshk/6764095 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"networks": [ //Массив сетей | |
{ | |
"title": "36,6", //Название сети | |
"id": 1, //ID сети | |
"image": "/f/images/logo-366.png" //ccылка на логотип сети | |
} | |
], | |
"points": [ //Массив точек | |
{ | |
"id": 339, //ID точки, необязательно | |
"latitude": 56.2901, //Широта | |
"longitude": 43.995, //Долгота | |
"title": null, //Название точки | |
"address": "ул. Нартова, 1", //Адрес | |
"network": 1 //Cтрока с массивом id сетей точки, сджойненым через , (eg 1,5,2) | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"city": "Нижний Новгород", //Название региона | |
"latitude": 56.3274, //Центр карты, широта | |
"longitude": 43.9852, //Центр карты, долгота | |
"zoom": 11, //Зум карты | |
"networks": [ //Массив сетей | |
{ | |
"title": "36,6", //Название сети | |
"id": 1, //ID сети | |
"image": "/f/images/logo-366.png" //ccылка на логотип сети | |
} | |
], | |
"subway": [ //Массив станций метро | |
{ | |
"title": 'Полянка', //Название | |
"branch": 'Серпуховская', //Ветка | |
"color": '#cccccc', //Цвет ветки | |
"latitude": 56.2901, //Широта | |
"longitude": 43.995, //Долгота | |
"zoom": 11, //Зум карты | |
} | |
], | |
"points": [ //Массив точек | |
{ | |
"id": 339, //ID точки, необязательно | |
"latitude": 56.2901, //Широта | |
"longitude": 43.995, //Долгота | |
"title": null, //Название точки | |
"address": "ул. Нартова, 1", //Адрес | |
"network": 1 //Cтрока с массивом id сетей точки, сджойненым через , (eg 1,5,2) | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment