├── .jshintrc ├── README.md ├── config ├── defaults.js └── templateConfig.js ├── css ├── FlickrLayer.css ├── HomeButton.css ├── InstagramLayer.css ├── LocateButton.css ├── ShareDialog.css ├── SimpleSlider.css ├── TwitterLayer.css ├── WebcamsLayer.css ├── YoutubeLayer.css ├── dialogs.css ├── dijit.css ├── fontello-ie7.css ├── fontello.css ├── geocoder.css ├── main.css └── popup.css ├── font ├── fontello.eot ├── fontello.svg ├── fontello.ttf └── fontello.woff ├── images ├── ajax-loader.gif ├── apple-touch-icon.png ├── horizontal.png ├── item.png ├── loading-small.gif ├── loading.gif ├── map │ ├── Twitter_Social_Icon_Rounded_Square_Color_64.png │ ├── flickr_64.png │ ├── instagram25x30.png │ ├── webcam32x32.png │ └── yt_icon_rgb_64.png ├── scope.png ├── selected-arrow.png └── vertical.png ├── index.html ├── instagram-callback.html ├── js ├── About.js ├── Drawer.js ├── DrawerMenu.js ├── FlickrLayer.js ├── InstagramLayer.js ├── OAuthHelper.js ├── SearchSources.js ├── ShareDialog.js ├── SocialLayers.js ├── TwitterLayer.js ├── WebcamsLayer.js ├── YouTubeLayer.js ├── dijit │ └── templates │ │ ├── DrawerMenu.html │ │ └── ShareDialog.html ├── main.js ├── nls │ ├── ShareDialog.js │ ├── ar │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── bs │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── ca │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── cs │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── da │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── de │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── el │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── es │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── et │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── fi │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── fr │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── he │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── hr │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── hu │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── id │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── it │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── ja │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── ko │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── lt │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── lv │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── nb │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── nl │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── pl │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── pt-br │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── pt-pt │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── resources.js │ ├── ro │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── ru │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── sl │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── sr │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── sv │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── th │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── tr │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── uk │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── vi │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── zh-cn │ │ ├── ShareDialog.js │ │ └── resources.js │ ├── zh-hk │ │ ├── ShareDialog.js │ │ └── resources.js │ └── zh-tw │ │ ├── ShareDialog.js │ │ └── resources.js ├── respond.min.js └── template.js ├── license.txt ├── oauth-callback.html ├── resources ├── configurationPanel.js └── fontello-9bb2ebe7.zip └── twitter-callback.html /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/.jshintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/README.md -------------------------------------------------------------------------------- /config/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/config/defaults.js -------------------------------------------------------------------------------- /config/templateConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/config/templateConfig.js -------------------------------------------------------------------------------- /css/FlickrLayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/FlickrLayer.css -------------------------------------------------------------------------------- /css/HomeButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/HomeButton.css -------------------------------------------------------------------------------- /css/InstagramLayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/InstagramLayer.css -------------------------------------------------------------------------------- /css/LocateButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/LocateButton.css -------------------------------------------------------------------------------- /css/ShareDialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/ShareDialog.css -------------------------------------------------------------------------------- /css/SimpleSlider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/SimpleSlider.css -------------------------------------------------------------------------------- /css/TwitterLayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/TwitterLayer.css -------------------------------------------------------------------------------- /css/WebcamsLayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/WebcamsLayer.css -------------------------------------------------------------------------------- /css/YoutubeLayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/YoutubeLayer.css -------------------------------------------------------------------------------- /css/dialogs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/dialogs.css -------------------------------------------------------------------------------- /css/dijit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/dijit.css -------------------------------------------------------------------------------- /css/fontello-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/fontello-ie7.css -------------------------------------------------------------------------------- /css/fontello.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/fontello.css -------------------------------------------------------------------------------- /css/geocoder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/geocoder.css -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/main.css -------------------------------------------------------------------------------- /css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/css/popup.css -------------------------------------------------------------------------------- /font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/font/fontello.eot -------------------------------------------------------------------------------- /font/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/font/fontello.svg -------------------------------------------------------------------------------- /font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/font/fontello.ttf -------------------------------------------------------------------------------- /font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/font/fontello.woff -------------------------------------------------------------------------------- /images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/ajax-loader.gif -------------------------------------------------------------------------------- /images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/apple-touch-icon.png -------------------------------------------------------------------------------- /images/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/horizontal.png -------------------------------------------------------------------------------- /images/item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/item.png -------------------------------------------------------------------------------- /images/loading-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/loading-small.gif -------------------------------------------------------------------------------- /images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/loading.gif -------------------------------------------------------------------------------- /images/map/Twitter_Social_Icon_Rounded_Square_Color_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/map/Twitter_Social_Icon_Rounded_Square_Color_64.png -------------------------------------------------------------------------------- /images/map/flickr_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/map/flickr_64.png -------------------------------------------------------------------------------- /images/map/instagram25x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/map/instagram25x30.png -------------------------------------------------------------------------------- /images/map/webcam32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/map/webcam32x32.png -------------------------------------------------------------------------------- /images/map/yt_icon_rgb_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/map/yt_icon_rgb_64.png -------------------------------------------------------------------------------- /images/scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/scope.png -------------------------------------------------------------------------------- /images/selected-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/selected-arrow.png -------------------------------------------------------------------------------- /images/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/images/vertical.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/index.html -------------------------------------------------------------------------------- /instagram-callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/instagram-callback.html -------------------------------------------------------------------------------- /js/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/About.js -------------------------------------------------------------------------------- /js/Drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/Drawer.js -------------------------------------------------------------------------------- /js/DrawerMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/DrawerMenu.js -------------------------------------------------------------------------------- /js/FlickrLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/FlickrLayer.js -------------------------------------------------------------------------------- /js/InstagramLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/InstagramLayer.js -------------------------------------------------------------------------------- /js/OAuthHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/OAuthHelper.js -------------------------------------------------------------------------------- /js/SearchSources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/SearchSources.js -------------------------------------------------------------------------------- /js/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/ShareDialog.js -------------------------------------------------------------------------------- /js/SocialLayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/SocialLayers.js -------------------------------------------------------------------------------- /js/TwitterLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/TwitterLayer.js -------------------------------------------------------------------------------- /js/WebcamsLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/WebcamsLayer.js -------------------------------------------------------------------------------- /js/YouTubeLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/YouTubeLayer.js -------------------------------------------------------------------------------- /js/dijit/templates/DrawerMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/dijit/templates/DrawerMenu.html -------------------------------------------------------------------------------- /js/dijit/templates/ShareDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/dijit/templates/ShareDialog.html -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/main.js -------------------------------------------------------------------------------- /js/nls/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/ar/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/ar/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/ar/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/ar/resources.js -------------------------------------------------------------------------------- /js/nls/bs/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/bs/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/bs/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/bs/resources.js -------------------------------------------------------------------------------- /js/nls/ca/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/ca/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/ca/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/ca/resources.js -------------------------------------------------------------------------------- /js/nls/cs/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/cs/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/cs/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/cs/resources.js -------------------------------------------------------------------------------- /js/nls/da/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/da/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/da/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/da/resources.js -------------------------------------------------------------------------------- /js/nls/de/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/de/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/de/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/de/resources.js -------------------------------------------------------------------------------- /js/nls/el/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/el/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/el/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/el/resources.js -------------------------------------------------------------------------------- /js/nls/es/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/es/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/es/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/es/resources.js -------------------------------------------------------------------------------- /js/nls/et/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/et/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/et/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/et/resources.js -------------------------------------------------------------------------------- /js/nls/fi/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/fi/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/fi/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/fi/resources.js -------------------------------------------------------------------------------- /js/nls/fr/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/fr/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/fr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/fr/resources.js -------------------------------------------------------------------------------- /js/nls/he/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/he/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/he/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/he/resources.js -------------------------------------------------------------------------------- /js/nls/hr/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/hr/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/hr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/hr/resources.js -------------------------------------------------------------------------------- /js/nls/hu/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/hu/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/hu/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/hu/resources.js -------------------------------------------------------------------------------- /js/nls/id/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/id/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/id/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/id/resources.js -------------------------------------------------------------------------------- /js/nls/it/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/it/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/it/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/it/resources.js -------------------------------------------------------------------------------- /js/nls/ja/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/ja/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/ja/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/ja/resources.js -------------------------------------------------------------------------------- /js/nls/ko/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/ko/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/ko/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/ko/resources.js -------------------------------------------------------------------------------- /js/nls/lt/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/lt/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/lt/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/lt/resources.js -------------------------------------------------------------------------------- /js/nls/lv/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/lv/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/lv/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/lv/resources.js -------------------------------------------------------------------------------- /js/nls/nb/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/nb/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/nb/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/nb/resources.js -------------------------------------------------------------------------------- /js/nls/nl/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/nl/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/nl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/nl/resources.js -------------------------------------------------------------------------------- /js/nls/pl/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/pl/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/pl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/pl/resources.js -------------------------------------------------------------------------------- /js/nls/pt-br/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/pt-br/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/pt-br/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/pt-br/resources.js -------------------------------------------------------------------------------- /js/nls/pt-pt/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/pt-pt/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/pt-pt/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/pt-pt/resources.js -------------------------------------------------------------------------------- /js/nls/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/resources.js -------------------------------------------------------------------------------- /js/nls/ro/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/ro/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/ro/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/ro/resources.js -------------------------------------------------------------------------------- /js/nls/ru/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/ru/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/ru/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/ru/resources.js -------------------------------------------------------------------------------- /js/nls/sl/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/sl/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/sl/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/sl/resources.js -------------------------------------------------------------------------------- /js/nls/sr/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/sr/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/sr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/sr/resources.js -------------------------------------------------------------------------------- /js/nls/sv/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/sv/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/sv/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/sv/resources.js -------------------------------------------------------------------------------- /js/nls/th/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/th/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/th/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/th/resources.js -------------------------------------------------------------------------------- /js/nls/tr/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/tr/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/tr/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/tr/resources.js -------------------------------------------------------------------------------- /js/nls/uk/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/uk/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/uk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/uk/resources.js -------------------------------------------------------------------------------- /js/nls/vi/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/vi/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/vi/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/vi/resources.js -------------------------------------------------------------------------------- /js/nls/zh-cn/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/zh-cn/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/zh-cn/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/zh-cn/resources.js -------------------------------------------------------------------------------- /js/nls/zh-hk/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/zh-hk/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/zh-hk/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/zh-hk/resources.js -------------------------------------------------------------------------------- /js/nls/zh-tw/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/zh-tw/ShareDialog.js -------------------------------------------------------------------------------- /js/nls/zh-tw/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/nls/zh-tw/resources.js -------------------------------------------------------------------------------- /js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/respond.min.js -------------------------------------------------------------------------------- /js/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/js/template.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/license.txt -------------------------------------------------------------------------------- /oauth-callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/oauth-callback.html -------------------------------------------------------------------------------- /resources/configurationPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/resources/configurationPanel.js -------------------------------------------------------------------------------- /resources/fontello-9bb2ebe7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/resources/fontello-9bb2ebe7.zip -------------------------------------------------------------------------------- /twitter-callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/public-information-map-template-js/HEAD/twitter-callback.html --------------------------------------------------------------------------------