diff options
| author | Yuval Adam <_@yuv.al> | 2019-10-16 20:24:05 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2019-10-16 20:24:05 +0300 |
| commit | 9a151f9dd36e4f5e419b1d9236e63ad38be38e91 (patch) | |
| tree | 1a3e837573f217d243ac69a3e8575af20050e5a1 /src/config.js | |
| parent | 99c8d0d1fdd32bae90d8c766c542cc06891e088d (diff) | |
Add image Source and Layer components
Diffstat (limited to 'src/config.js')
| -rw-r--r-- | src/config.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/config.js b/src/config.js index bf8a508..ecb8f88 100644 --- a/src/config.js +++ b/src/config.js @@ -4,4 +4,11 @@ const IMAGES_BASE_URL = DEVELOPMENT ? '' : 'https://imgs.geshem.space'; const MAPBOX_ACCESS_TOKEN = 'pk.eyJ1IjoieXV2YWRtIiwiYSI6ImNpcnMxbzBuaTAwZWdoa25oczlzZmkwbHcifQ.UHtLngbKm9O8945pJm23Nw'; -module.exports = { IMAGES_BASE_URL, MAPBOX_ACCESS_TOKEN }; +const IMAGE_COORDINATES = [ + [31.7503896894, 34.4878044232], + [37.8574239563, 34.5078463729], + [37.7157066403, 29.4538271687], + [31.9347389087, 29.4373462909] +]; + +module.exports = { IMAGES_BASE_URL, MAPBOX_ACCESS_TOKEN, IMAGE_COORDINATES }; |
