Changeset 9316 for src/django_gheat/website/static
- Timestamp:
- Jun 30, 2011, 3:26:19 PM (13 years ago)
- Location:
- src/django_gheat/website/static
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/django_gheat/website/static/heatmap.js
r9302 r9316 11 11 12 12 if(lat=='null' || lon=='null' || zoom=='null'){ 13 var lat = 52.1 4068;14 var lon = 4.48 319;15 var zoom = 1 6;13 var lat = 52.15514; 14 var lon = 4.48959; 15 var zoom = 13; 16 16 } 17 17 var projection_wgs = new OpenLayers.Projection("EPSG:4326"); // WGS 1984 -
src/django_gheat/website/static/heatmap_extensions.js
r9302 r9316 68 68 stop: function(event, sig){ 69 69 signallayer = map.getLayersByName('signallayer'); 70 console.log(signallayer[0]);71 70 signallayer[0].setUrl("/website/tile/${z}/${x},${y}.png?colour=250,250,0&signaal__gte=" + sig.values[0] + "&signaal__lte=" + sig.values[1]); 72 71 signallayer[0].redraw(); … … 144 143 145 144 /** 145 * Toggles layerswitcher visibility. 146 * On 'off', toggler shows a '+'. 147 * On 'on', toggler shows a '-'. 148 */ 149 $("#cat_hide").live("click", function(){ 150 cat = $(this).parent('div').next('p').children('span') 151 cat.toggle(); 152 if(cat.is(":visible")){ 153 //FIXME: images are getting loaded the hard way. Replace '/static/'. '{{ STATIC_URL }}' doesn't seem to work here. 154 $(this).css('background-image', "url(/static/img/up.png)"); 155 } 156 else{ 157 $(this).css('background-image', "url(/static/img/down.png)"); 158 } 159 }); 160 161 /** 146 162 * Fastest? 147 163 * http://stackoverflow.com/questions/170986/what-is-the-best-way-to-add-options-to-a-select-from-an-array-with-jquery … … 153 169 userlist.push(json.gebruiker); 154 170 $.each(json.meetrondje, function(m, meetrondje){ 155 console.log(meetrondje.datum);156 171 $("#select_dataset").append($("<option/>").attr({"class":json.gebruiker, "value":meetrondje.naam}).text(meetrondje.naam)); 157 172 $.each(meetrondje.nodes, function(n, nodes){ -
src/django_gheat/website/static/style.css
r9302 r9316 102 102 position:absolute; 103 103 right:-2px; 104 top: 100px;104 top:50px; 105 105 width:200px; 106 bottom:100px;106 max-height:80%; 107 107 background-color:#FFF; 108 108 border:2px solid #BA0000; … … 117 117 top:0px; 118 118 background-color:#BA0000; 119 padding-left: 5px;119 padding-left:0px; 120 120 padding-right:5px; 121 121 font-size:18px; … … 123 123 } 124 124 125 #cat_container{ 126 127 } 128 125 129 #layer_switcher_toggle{ 126 130 position:absolute; 127 131 right:-2px; 128 top: 101px;132 top:51px; 129 133 width:17px; 130 134 height:17px; … … 146 150 float:left; 147 151 } 152 153 #cat_hide{ 154 margin-top:4px; 155 margin-left:4px; 156 padding-left:-4px; 157 padding-top:-10px; 158 width:10px; 159 height:10px; 160 border:1px solid #000; 161 float:left; 162 background:url(img/up.png) no-repeat top left; 163 color:#000; 164 font-size:13px; 165 text-align:center; 166 } 167 148 168 149 169 #sig_slider{
Note:
See TracChangeset
for help on using the changeset viewer.