1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
//Utility functions for map info window
function mapit(latlontitle) {
var map;
lat = parseFloat(latlontitle.split(',')[0]);
lon = parseFloat(latlontitle.split(',')[1]);
title= latlontitle.split(',')[2];
var mapitinit;
if (mapitinit == true) {
panto();
} else {
mapInit();
}
function mapInit() {
var centerCoord = new google.maps.LatLng(lat, lon);
var mapOptions = {
zoom: 6,
center: centerCoord,
mapTypeId: google.maps.MapTypeId.TERRAIN
};
map = new google.maps.Map(document.getElementById("map-wrapper"), mapOptions);
var marker = new google.maps.Marker({
position: centerCoord,
map: map,
title: title
});
mapitinit = true;
}
function panto(){
var marker = new google.maps.Marker({
position: centerCoord,
map: map,
title: title
});
map.panTo(centerCoord);
}
}
// utility functions to create/remove map container
function create_map(obj) {
//create container divs
$(obj).parent().parent().parent().append('<div id="map-container">');
$('#map-container').append('<div id="map-wrapper">');
//deal with the variable height of div.legend
$('#map-container').css({
bottom: function(index, value) {
return parseFloat($(obj).parent().parent().css("height"))-2;
}
});
mapit(obj.title);
}
function remove_map() {
$('#map-container').remove();
}
// utility functions to create/remove camera info container
function get_exif(obj,id) {
$(obj).parents().eq(2).append('<div id="exif-container">');
$(obj).parents().eq(2).children('.meta').clone().appendTo('#exif-container').css('display', 'block');
//deal with the variable height of div.legend
$('#exif-container').css({
bottom: function(index, value) {
return parseFloat($(obj).parent().parent().css("height"))-14;
}
});
}
function remove_exif() {
$("#exif-container").remove();
}
//
$(document).ready(function(){
//set up click events for map button
$('.map-link').click( function() {
if ($("#exif-container").is(":visible")){
remove_exif();
}
if ($('#map-container').is(":visible")) {
remove_map();
} else {
create_map(this);
}
return false;
});
//set up click events camera info button
$('.exif-link').click( function() {
if ($('#map-container').is(":visible")){
remove_map();
}
if ($('#exif-container').is(":visible")) {
remove_exif();
} else {
get_exif(this);
}
return false;
});
// create and hide nav buttons (needed for keyboard shortcuts
$('#slides').append('<div class="slidenav"><a id="prev">< Prev </a><a id="next"> Next ></a></div>');
$('.slidenav').css("display","none");
//find out if we should display a specific slide
var index = 0, hash = window.location.hash;
if (hash) {
index = /\d+/.exec(hash)[0];
index = (parseInt(index) || 1) - 1; // slides are zero-based
}
// initialize the cycle slideshow
$('#slides .bigimg').wrapAll('<div class="bigimgs">').parents('#slides').append('<ul class="menu" id="feature_gallery_pager">').cycle({
fx: 'fade',
startingSlide: index,
pause: 1,
prev: '#prev',
next: '#next',
before: onBefore,
after: onAfter,
slideExpr: '.bigimg',
pager: '#feature_gallery_pager',
pagerAnchorBuilder: function(idx, slide) {
return '<li><a href="#"><img src="'+slide.id+'" class="thumb"><span></span></a></li>';
}
});
//callback to delete map and camera info windows if they exist
function onBefore() {
$('#map-container').remove();
$('#exif-container').remove();
}
//callback to change url for permalinks and scroll jcarousel
function onAfter(curr,next,opts) {
if (opts.currSlide % 10 == 0) {
if (opts.currSlide != 0) {
$('#slides').trigger('image-loaded',[opts.currSlide+1]);
} else {
$('#slides').trigger('image-loaded',[1]);
}
}
window.location.hash = 'image'+(opts.currSlide + 1);
}
//callback for jcarousel
function initCallbackFunction(carousel) {
// bind "image-loaded" event to the #slides container (trigger in onAfter function)
$('#slides').bind('image-loaded', function(event, num) {
// scroll carousel
carousel.scroll(num);
return false;
});
};
//initialize the jcarousel plugin
$(function() {
$('#feature_gallery_pager').jcarousel({
scroll:10,
initCallback: initCallbackFunction
});
});
/* hover buttons, currently not used
$("#slideshow").hover(function() {
$("ul#nav").fadeIn();
},
function() {
$("ul#nav").fadeOut();
});
*/
//enable keyboard shortcuts:
$(document.documentElement).keyup(function(event) {
var direction = null;
if (event.keyCode == 37) {
direction = 'prev';
} else if (event.keyCode == 39) {
direction = 'next';
}
if (direction != null) {
$('#slides').each(function(index) {
$('#prev,#next', this)[direction]().click();
});
}
});
//enable slideshow instructions
$('#instructions').css("visibility","visible")
});
|