Changeset 9316 for src/django_gheat/website/static/heatmap_extensions.js
- Timestamp:
- Jun 30, 2011, 3:26:19 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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){
Note:
See TracChangeset
for help on using the changeset viewer.