2009-11-19 15:51:46 +00:00
|
|
|
$(document).ready(function() {
|
2009-11-20 22:40:38 +00:00
|
|
|
var notices = [];
|
2009-11-20 00:12:58 +00:00
|
|
|
$(".notice").each(function(){
|
2009-11-20 22:40:38 +00:00
|
|
|
var notice = getNoticeFromElement($(this));
|
2009-11-20 00:12:58 +00:00
|
|
|
if(notice['geo'])
|
|
|
|
notices.push(notice);
|
|
|
|
});
|
2009-11-20 16:16:39 +00:00
|
|
|
if($("#map_canvas").length && notices.length>0)
|
2009-11-20 00:12:58 +00:00
|
|
|
{
|
|
|
|
showMapstraction($("#map_canvas"), notices);
|
|
|
|
}
|
|
|
|
|
2009-11-20 22:40:38 +00:00
|
|
|
$('.geo').click(function(){
|
|
|
|
var noticeElement = $(this).closest(".notice");
|
2009-11-20 00:12:58 +00:00
|
|
|
notice = getNoticeFromElement(noticeElement);
|
|
|
|
|
|
|
|
$.fn.jOverlay.options = {
|
|
|
|
color : '#000',
|
|
|
|
opacity : '0.6',
|
|
|
|
zIndex : 99,
|
|
|
|
center : false,
|
|
|
|
bgClickToClose : true,
|
|
|
|
autoHide : true,
|
|
|
|
css : {'max-width':'542px', 'top':'5%', 'left':'32.5%'}
|
|
|
|
};
|
2009-11-20 22:40:38 +00:00
|
|
|
var html="<div id='map_canvas_popup' class='gray smallmap' style='width: 542px; height: 500px' />";
|
2009-11-20 00:12:58 +00:00
|
|
|
html+="<button class='close'>×</button>";
|
|
|
|
html+=$("<div/>").append($(this).clone()).html();
|
|
|
|
$().jOverlay({ "html": html });
|
|
|
|
$('#jOverlayContent').show();
|
|
|
|
$('#jOverlayContent button').click($.closeOverlay);
|
|
|
|
|
|
|
|
showMapstraction($("#map_canvas_popup"), notice);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function getMicroformatValue(element)
|
|
|
|
{
|
|
|
|
if(element[0].tagName.toLowerCase() == 'abbr'){
|
|
|
|
return element.attr('title');
|
|
|
|
}else{
|
|
|
|
return element.text();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getNoticeFromElement(noticeElement)
|
|
|
|
{
|
2009-11-20 22:40:38 +00:00
|
|
|
var notice = {};
|
|
|
|
if(noticeElement.find(".geo").length){
|
|
|
|
var latlon = noticeElement.find(".geo").attr('title').split(";");
|
2009-11-20 00:12:58 +00:00
|
|
|
notice['geo']={'coordinates': [
|
2009-11-20 22:40:38 +00:00
|
|
|
parseFloat(latlon[0]),
|
|
|
|
parseFloat(latlon[1])] };
|
2009-11-20 00:12:58 +00:00
|
|
|
}
|
|
|
|
notice['user']={
|
|
|
|
'profile_image_url': noticeElement.find("img.avatar").attr('src'),
|
|
|
|
'profile_url': noticeElement.find(".author a.url").attr('href'),
|
|
|
|
'screen_name': noticeElement.find(".author .nickname").text()
|
|
|
|
};
|
|
|
|
notice['html']=noticeElement.find(".entry-content").html();
|
|
|
|
notice['url']=noticeElement.find("a.timestamp").attr('href');
|
|
|
|
notice['created_at']=noticeElement.find("abbr.published").text();
|
|
|
|
return notice;
|
|
|
|
}
|
|
|
|
|
|
|
|
function showMapstraction(element, notices) {
|
|
|
|
if(element instanceof jQuery) element = element[0];
|
|
|
|
if(! $.isArray(notices)) notices = [notices];
|
|
|
|
var mapstraction = new mxn.Mapstraction(element, _provider);
|
2009-11-19 15:51:46 +00:00
|
|
|
|
|
|
|
var minLat = 181.0;
|
|
|
|
var maxLat = -181.0;
|
|
|
|
var minLon = 181.0;
|
|
|
|
var maxLon = -181.0;
|
|
|
|
|
2009-11-20 00:12:58 +00:00
|
|
|
for (var i in notices)
|
2009-11-19 15:51:46 +00:00
|
|
|
{
|
2009-11-20 00:12:58 +00:00
|
|
|
var n = notices[i];
|
2009-11-19 15:51:46 +00:00
|
|
|
|
|
|
|
var lat = n['geo']['coordinates'][0];
|
|
|
|
var lon = n['geo']['coordinates'][1];
|
|
|
|
|
|
|
|
if (lat < minLat) {
|
|
|
|
minLat = lat;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lat > maxLat) {
|
|
|
|
maxLat = lat;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lon < minLon) {
|
|
|
|
minLon = lon;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lon > maxLon) {
|
|
|
|
maxLon = lon;
|
|
|
|
}
|
|
|
|
|
2009-11-19 16:51:15 +00:00
|
|
|
pt = new mxn.LatLonPoint(lat, lon);
|
|
|
|
mkr = new mxn.Marker(pt);
|
|
|
|
|
|
|
|
mkr.setIcon(n['user']['profile_image_url']);
|
2009-11-19 18:20:55 +00:00
|
|
|
mkr.setInfoBubble('<a href="'+ n['user']['profile_url'] + '">' + n['user']['screen_name'] + '</a>' + ' ' + n['html'] +
|
|
|
|
'<br/><a href="'+ n['url'] + '">'+ n['created_at'] + '</a>');
|
2009-11-19 16:51:15 +00:00
|
|
|
|
|
|
|
mapstraction.addMarker(mkr);
|
|
|
|
}
|
2009-11-19 15:51:46 +00:00
|
|
|
|
2009-11-19 16:51:15 +00:00
|
|
|
bounds = new mxn.BoundingBox(minLat, minLon, maxLat, maxLon);
|
2009-11-19 15:51:46 +00:00
|
|
|
|
2009-11-19 16:51:15 +00:00
|
|
|
mapstraction.setBounds(bounds);
|
2009-11-20 00:12:58 +00:00
|
|
|
}
|