├── LICENSE ├── Makefile ├── README.rst ├── chrome.manifest ├── chrome ├── content │ └── zotero-maps │ │ ├── include.js │ │ ├── overlay.xul │ │ ├── setup.js │ │ ├── ui.html │ │ └── ui.js ├── locale │ └── en-US │ │ └── zotero-maps │ │ ├── maps.dtd │ │ └── maps.properties └── skin │ └── default │ └── zotero-maps │ ├── OpenLayers.js │ ├── img │ ├── blank.gif │ ├── close.gif │ ├── cloud-popup-relative.png │ ├── drag-rectangle-off.png │ ├── drag-rectangle-on.png │ ├── east-mini.png │ ├── layer-switcher-maximize.png │ ├── layer-switcher-minimize.png │ ├── marker-blue.png │ ├── marker-gold.png │ ├── marker-green.png │ ├── marker.png │ ├── measuring-stick-off.png │ ├── measuring-stick-on.png │ ├── north-mini.png │ ├── panning-hand-off.png │ ├── panning-hand-on.png │ ├── slider.png │ ├── south-mini.png │ ├── west-mini.png │ ├── zoom-minus-mini.png │ ├── zoom-plus-mini.png │ ├── zoom-world-mini.png │ ├── zoombar.png │ └── zotero_16x28.png │ ├── loading.gif │ ├── theme │ └── default │ │ ├── custom.css │ │ └── style.css │ ├── zotero.cfg │ └── zotero_z_32px.png ├── install.rdf └── zotero.cfg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/README.rst -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/zotero-maps/include.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/content/zotero-maps/include.js -------------------------------------------------------------------------------- /chrome/content/zotero-maps/overlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/content/zotero-maps/overlay.xul -------------------------------------------------------------------------------- /chrome/content/zotero-maps/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/content/zotero-maps/setup.js -------------------------------------------------------------------------------- /chrome/content/zotero-maps/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/content/zotero-maps/ui.html -------------------------------------------------------------------------------- /chrome/content/zotero-maps/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/content/zotero-maps/ui.js -------------------------------------------------------------------------------- /chrome/locale/en-US/zotero-maps/maps.dtd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chrome/locale/en-US/zotero-maps/maps.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/locale/en-US/zotero-maps/maps.properties -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/OpenLayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/OpenLayers.js -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/blank.gif -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/close.gif -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/cloud-popup-relative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/cloud-popup-relative.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/drag-rectangle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/drag-rectangle-off.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/drag-rectangle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/drag-rectangle-on.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/east-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/east-mini.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/layer-switcher-maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/layer-switcher-maximize.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/layer-switcher-minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/layer-switcher-minimize.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/marker-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/marker-blue.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/marker-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/marker-gold.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/marker-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/marker-green.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/marker.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/measuring-stick-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/measuring-stick-off.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/measuring-stick-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/measuring-stick-on.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/north-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/north-mini.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/panning-hand-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/panning-hand-off.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/panning-hand-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/panning-hand-on.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/slider.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/south-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/south-mini.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/west-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/west-mini.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/zoom-minus-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/zoom-minus-mini.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/zoom-plus-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/zoom-plus-mini.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/zoom-world-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/zoom-world-mini.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/zoombar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/zoombar.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/img/zotero_16x28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/img/zotero_16x28.png -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/loading.gif -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/theme/default/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/theme/default/custom.css -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/theme/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/theme/default/style.css -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/zotero.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/zotero.cfg -------------------------------------------------------------------------------- /chrome/skin/default/zotero-maps/zotero_z_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/chrome/skin/default/zotero-maps/zotero_z_32px.png -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/install.rdf -------------------------------------------------------------------------------- /zotero.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/zotero-maps/HEAD/zotero.cfg --------------------------------------------------------------------------------