问题:我想把Twitter分享按钮放在我的Google Map InfoWindow中。
我使用google.maps.event.addListener(infowindow, 'domready' function() { ...code...}来监听要添加到DOM的InfoWindow,但它只适用于第一个启动的InfoWindow。
Twitter Share Button Examples应用以下脚本:
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
反对班级:
"twitter-share-button"
假设: 现在我遇到的问题是InfoWindow和标记是在$ .each()循环中创建的,我不知道要让jQuery监视什么事件。
我已经尝试创建一个jsfiddle作为示例,但是如果我在实时网站中使用$ .each(),我就无法加载它,但我将它链接到这里,以防它帮助您演示答案:
我的不工作JSFiddle。
我的 live development site which shows the problem。
其他Stack Overflow问题:类似但不同。
Calling a JavaScript function within an InfoWindow (Google Maps)
我见过jQuery-ui-map插件。这不会做任何我不能用直接JavaScript做的事情。
Map.js:或Pastebin link to code below but with syntax highlighting
$('.page-map').live("pageshow", function() {
$.getJSON("/rest/Pub", function(data) {
var latlng = new google.maps.LatLng(59.920, 10.750);
var map = new google.maps.Map(document.getElementById("map-canvas"), {
// zoom is good on iphone @ 13 but better on desktop @ 14
zoom: 12,
center: latlng,
backgroundColor: 'black',
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
},
mapTypeId: google.maps.MapTypeId.HYBRID
});
var bubble = new google.maps.InfoWindow();
var pubs = data.list.Pub;
$.each(pubs, function(i, pub) {
var beer;
var pubaddress = encodeURI(pub.pub_address);
var pubname = encodeURI(pub.pub_name);
var posi = new google.maps.LatLng(pub.pub_lat, pub.pub_long);
var marker = new google.maps.Marker({
animation: (pub.pub_bounce =='true') ? google.maps.Animation.BOUNCE : null,
map: map,
icon: "/static/images/" + pub.beer_price + ".png",
shadow: 'static/images/shadow.png',
position: posi,
title: pub.pub_name
});
if (pub.beer_price == 99) {
marker.setZIndex(1);
} else {
marker.setZIndex(100);
}
google.maps.event.addListener(marker, 'click', function() {
// http://mapki.com/wiki/Google_Map_Parameters
if (pub.beer_price == 99) {
beer = '?';
} else {
beer = pub.beer_price;
}
tweet = '<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://oslogigs.com" data-text="' + pub.pub_name + '" data-lang="en" data-via="OsloGigs" data-hashtags="oslo, oslogigs, norway">Tweet</a>';
content_string = '<h1>'+ pub.pub_name + '</h1>'+
'<p><a href="http://maps.google.com/?saddr=Current%20Location&daddr=' +
pubaddress + '+(' + pubname + ')&dirflg=w&t=h">Google Maps Directions</a></p>' +
'<p>Phone:<a href="tel:' + pub.pub_phone + '">' + pub.pub_phone + '</a></p>' +
'<p>Halvliterpris: NOK <b>' + beer + '</b></p><p>' + tweet + '</p>';
bubble.setContent(content_string);
console.log(bubble.getContent());
bubble.open(map, this);
});
google.maps.event.addListener(bubble, 'domready', function() {
//$('.twitter-share-button').on('domready', function(event) {
console.log("Iteration:"+ i + " Twitter javascript loaded " + pub.pub_name);
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
});
});
});
});
干杯。
答案 0 :(得分:4)
调用
twttr.widgets.load();
后
bubble.open(map, this);
应该这样做。
由于您正在异步加载twitter小部件JavaScript,因此您可能需要在调用之前检查是否已定义 twttr 。