├── README.md ├── custom-map.js ├── headeradd.html ├── map_toolbar-mobile.html ├── map_toolbar.html ├── style.css └── vrsccoptions.png /README.md: -------------------------------------------------------------------------------- 1 | # VRS-Charts 2 | Aviation chart overlays for Virtual Radar Server. For a live example, see http://flights.hillhome.org and http://flights.hillhome.org/VirtualRadar. 3 | 4 | ##Prerequisites 5 | - VRS installed and running 6 | - VRS Custom Content Plugin installed 7 | 8 | ##Instructions 9 | 10 | - Clone or download the repo into a directory on the machine where VRS is running. Ensure you do not place the files under the Virtual Radar Server directory, since they could be overwritten on upgrades. 11 | - Configure the VRS Custom Content Plugin as shown below 12 | 13 | ![alt tag](https://raw.github.com/ProHill/VRS-Charts/master/vrsccoptions.png) 14 | -------------------------------------------------------------------------------- /custom-map.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /headeradd.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /map_toolbar-mobile.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 20 |
21 |
-------------------------------------------------------------------------------- /map_toolbar.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 20 |
21 |
-------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | #main_toolbar { 2 | padding: 0px; 3 | padding-left: 5px; 4 | margin-top: 4px; 5 | margin-bottom: 0px; 6 | margin-right: 5px; 7 | border: 1px solid #000; 8 | width: 120px; 9 | height: 20px; 10 | vertical-align: middle; 11 | border-radius: 0px; 12 | overflow: hidden; 13 | background-color: #fff; 14 | background: #fff url("http://maps.gstatic.com/mapfiles/arrow-down.png") no-repeat 90% 50%; 15 | } 16 | 17 | .mapChartsButton { 18 | padding: 0px; 19 | margin: 0; 20 | margin-left: 0px; 21 | margin-bottom: 0px; 22 | width: 120px; 23 | height: 20px; 24 | vertical-align: middle; 25 | border: 1px solid #000; 26 | box-shadow: none; 27 | background-color: transparent; 28 | background-image: none; 29 | -webkit-appearance: none; 30 | -moz-appearance: none; 31 | appearance: none; 32 | } 33 | 34 | 35 | form#charts_form{ 36 | width: 120px; 37 | height: 20px; 38 | vertical-align: middle; 39 | padding: 0px; 40 | padding-bottom:0px; 41 | margin: 0px; 42 | } 43 | 44 | form select.mapChartsButton{ 45 | padding: 0px 0px; 46 | width: 120px; 47 | margin-bottom: 0px; 48 | height: 20px; 49 | border: none; 50 | outline: none; 51 | box-shadow: none; 52 | background-color: transparent; 53 | background-image: none; 54 | -webkit-appearance: none; 55 | -moz-appearance: none; 56 | appearance: none; 57 | } 58 | 59 | form select.mapButton{ 60 | padding: 0px 0px; 61 | width: 120px; 62 | margin-bottom: 0px; 63 | height: 20px; 64 | border: none; 65 | outline: none; 66 | box-shadow: none; 67 | background-color: transparent; 68 | background-image: none; 69 | -webkit-appearance: none; 70 | -moz-appearance: none; 71 | appearance: none; 72 | } -------------------------------------------------------------------------------- /vrsccoptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProHill/VRS-Charts/68e9439681a8abe3b590cadbe5700d3e04c8d0f7/vrsccoptions.png --------------------------------------------------------------------------------