diff options
author | Edward Valley <ed.valley@yandex.com> | 2019-07-12 23:53:29 -0400 |
---|---|---|
committer | Edward Valley <ed.valley@yandex.com> | 2019-07-12 23:53:29 -0400 |
commit | e6013751d88cbfaac6c03a070d88cfd5c3e16921 (patch) | |
tree | 1b509acddae033e38f699de01b5803e63d380008 /web/app/store | |
parent | 74045badac73aae991301e65d119109ee7d5d46e (diff) | |
download | trackermap-web-e6013751d88cbfaac6c03a070d88cfd5c3e16921.tar.gz trackermap-web-e6013751d88cbfaac6c03a070d88cfd5c3e16921.tar.bz2 trackermap-web-e6013751d88cbfaac6c03a070d88cfd5c3e16921.zip |
Add support for ArcGIS REST map services
Diffstat (limited to 'web/app/store')
-rw-r--r-- | web/app/store/MapTypes.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/web/app/store/MapTypes.js b/web/app/store/MapTypes.js index 3d322438..211cc81f 100644 --- a/web/app/store/MapTypes.js +++ b/web/app/store/MapTypes.js @@ -47,7 +47,10 @@ Ext.define('Traccar.store.MapTypes', { key: 'wikimedia', name: Strings.mapWikimedia }, { - key: 'custom', - name: Strings.mapCustom + key: 'customXyzFormat', + name: Strings.mapCustomXyzFormat + }, { + key: 'customArcgisRest', + name: Strings.mapCustomArcgisRest }] }); |