wunderground の API、Leaflet、および Cloudmade を使用して、マップ マーカーに天気アイコンを表示しようとしています。テキストが表示され、アイコン画像を含む変数がありますが、表示する方法がわかりません。これが私のコードです:
jQuery(document).ready(function($) {
$.ajax({
url: "http://api.wunderground.com/api/cd48ac26fb540679/conditions/q/pws:KCASANFR128.json",
dataType: "jsonp",
success: function(parsed_json) {
var location = parsed_json['current_observation']['observation_location']['city'];
var temp_f = parsed_json['current_observation']['temp_f'];
var icon = parsed_json['current_observation']['icon_url'];
marker1.bindPopup("Current temperature in " +location+ " is: " + temp_f).openPopup();
}
});
});
私はこれを試しましたが成功しませんでした:
marker1.bindPopup( <img src=icon> "Current temperature in " +location+ " is: " + temp_f).openPopup();
助言がありますか?