Can't get a GoogleAPI chart to appear in KML popup - google-api
I am having trouble getting a google API made table to appear in my KML popup. I have made other GoogleAPI feature such as pie and bar charts appear but this table wont load in and I'm just left with a blank space.
I have listed the code for the table below which does load on the chrome browser.
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['table']});
google.charts.setOnLoadCallback(drawTable);
function drawTable() {
var data = new google.visualization.DataTable();
data.addColumn('string', 'Site');
data.addColumn('string', 'Figure 1');
data.addColumn('string', 'Figure 2');
data.addColumn('string', 'Figure 3');
data.addColumn('string', 'Figure 4');
data.addRows([
['A','0','2.75','3.88','1.59'],['B','0','4','4.54','1.21'], ['C','0','0.5','4.2','8.98'],['D','0','5','0.06','0.01'],['E','0','5','0.26','0.06'],['F','0','5','0.07','0.02'],['G','0','3.68','0.61','0.24'],['H','0','0.5','1.29','3.02'],['I','0','0.5','0.42','1.0'],['J','0','5','0.72','0.15'],['K','0','1.66','60.73','38.74'],['L','0','5','0.14','0.03'],['M','0','5','0.25','0.06'],['N','0','5','0.05','0.01'],['O','0','5','0.06','0.01'],['P','0','1.55','0.31','0.23'],['Q','0','5.29','82.96','16.53'],['R','0','2.85','0.38','0.17'],['S','0','0.5','0.31','0.71'],['T','0','3.77','4.54','1.49']
]);
var table = new google.visualization.Table(document.getElementById('table_div'));
table.draw(data, {showRowNumber: true, width: '1000px', height: '500px'});
}
</script>
</head>
<body>
<h1>TABLE </h1>
<div id="table_div"></div>
</body>
I'm expecting the table to appear in the popup window of the KML point. at the moment it is just completely blank when I open it up.
Anyone encountered this before or have any ideas?
Related
Trying to read responseText to XMLRequest is just duplicating the body
So what's the deal? I'm simply trying to read text from this file. However, this code has the odd effect that, when I click the button, it seems to take the content of the page as the responseText, and will duplicate the button and paragraphs. Yet as far as I can tell I am mimmicking the W3Schools example, yet it doesn't work. <head></head> <body> <button onclick = "loadDoc()">Something to load?</button> <p>Here's a paragraph</p> <script> function loadDoc(){ let xhttp = new XMLHttpRequest(); xhttp.onload = function() { document.write(this.responseText); } xhttp.open("GET", "testText.txt"); xhttp.send(); } </script> </body>
having trouble running a fadein-fadeout Image banner
I am new in jquery I desperately need some help in running this code.I am trying to create a fade in-fade out image banner with 4 images within div tag, with the help of a function fadingbanner() which calls itself recursively and is initiated by a settimeout function.But for some reason its not working.Please help.... <HTML> <HEAD> <script type= "text/javascript" src="C:\Documents and Settings\A\Desktop\jquery-1.9.1.js"></script> <SCRIPT> <div> <img src = "C:\Documents and Settings\A\Desktop\web_files\temp1.jpg" id = "i1"> <img src = "C:\Documents and Settings\A\Desktop\web_files\temp2.jpg" id = "i2"> <img src = "C:\Documents and Settings\A\Desktop\web_files\temp3.jpg" id = "i3"> <img src = "C:\Documents and Settings\A\Desktop\web_files\temp4.jpg" id = "i4"> </div> function fadingbanner() { $(document).ready(function(){ $("#i1").fadeOut(2000,function(){ $("#i2").fadeIn(2000,function(){ $("#i2").fadeOut(2000,function(){ $("#i3").fadeIn(2000,function(){ $("#i3").fadeout(2000,function(){ $("#i4").fadeIn(2000,function(){ $("#i4").fadeout(2000,function(){ fadingbanner(); }); }); }); }); }); }); }); } </SCRIPT> </HEAD> <BODY> <IMG NAME = "bannerimage" src = "C:\Documents and Settings\A\Desktop\web_files\temp1.jpg" height = "200" width = "600" onload = "settimeout("fadingbanner()",1000)"> </BODY> </HTML>
Take out the function and it should work ok. It is only defining a function and never running it. If it did run it, all it would do is schedule the code to run when the document finishes loading. You also want to hide all but the first picture at the start. So it should be like: $(document).ready(function(){ $("#i2, #i3, #i4").hide(); $("#i1").fadeOut(2000,function(){ ... all that other stuff }); }); Here is a fiddle showing it: http://jsfiddle.net/ePBkX/1/ I borrowed the pictures there from the fiddle attached to this, which you might want to read: jQuery fade out then fade in
Problems with mouse events on newly created CKEditor instance
I'm trying to create a create a new CKEditor ver4 instance in response to the user clicking on an element. Due to the nature of the application, I can not use the "autoInline" feature as outlined in the CKEditor Sample. While the sample below does in fact create an editor instance, that instance has a significant problem. Inline instances are supposed to disappear when the user clicks away from them. In this example however, the user must first click away, click back into the instance, and then click away again. How can I prevent this? <!doctype html> <html> <head> <script src="jspath/ckeditor.js"></script> <script> var editor = null; CKEDITOR.disableAutoInline = true; function init() { var e2 = document.getElementById("element2"); e2.addEventListener("click", function () { if(!editor) { editor = CKEDITOR.inline(e2); editor.on('instanceReady', function () { console.log("instanceReady") console.log(editor.focusManager.hasFocus); }); editor.on('focus', function() { console.log("focus"); }) editor.on('blur', function() { console.log("blur"); editor.destroy(); editor = null; }) } }) } </script> </head> <body onload="init()"> <div tabindex="0" id="element2" style="background-color: yellow;" contentEditable = true>Element 2</div> </body> </html>
Despite the fact that editor.focusManager.hasFocus was true, the editor's element did not in fact have focus. Perhaps this is a bug? Anyway, adding editor.focus(); to the instanceReady function resolved the issue.
ember I cannot append a view
Im trying to insert a simple handlebars, like this, but there's so little support and the guide in the official page is so sad that I couldnt accomplish this. <head> <!--HANDLEBAR--> <script type="text/x-handlebars" data-template-name="say-hello"> Hello, <b>{{name}}</b> </script> <!--VIEW--> <script> var view = Ember.View.create({ templateName: 'say-hello', name: "Bob", }); view.appendTo('#templateHere'); //here I try to append the view </script> In firebug I get the error: unable to find the template "say-hello"...........but I dont know why doesnt find it
Finally I accomplished, I write the solutions here because I think that ember need more documentation and it's worth because is very interesting (and powerful): The problem was that I create an object of my view before defining it. The right code is this: .... <!--HANDLEBAR--> <script type="text/x-handlebars" data-template-name="say-hello"> Hello, <b>{{name}}</b> </script> <!--VIEW--> <script> App = Ember.Application.create(); //DEFINE VIEW App.Myview = Ember.View.extend({ templateName: 'say-hello', name: "Bob", }); //CREATE VIEW> App.myview=App.Myview.create(); console.log(App.myview.get('name'));//only for debug //APPEND VIEW $(function() { App.myview.append('#templateHere'); }); </script> </head> <body> <div id="templateHere"></div> </body> </html>
Getting Google Plus button to show after inserting markup with ajax
I'm trying to load a google+ 1 button on a page, the goal is to have the buttons markup inserted into the page via ajax and then make the call for the button to be rendered. The button renders fine when the page is loaded first time around. The problem arises when the markup is fetched from /displaycode.php and then the render call is made again. REFRESH <script type="text/javascript" src="https://apis.google.com/js/plusone.js"> {"parsetags": "explicit"} </script> <script type="text/javascript"> $(function() { $("#btn").click(function() { $('#live-preview').empty(); $("#live-preview").load('/displaycode.php #code'); gapi.plusone.go(); return false; }); gapi.plusone.go(); }); </script> <div id="live-preview"><div id="code"><div class="g-plusone"></div></div></div> </div> A demo of the problem can be viewed here http://32px.co/googleplusdemo.php . Thanks for any help in advance.
Render method Use explicit render: https://developers.google.com/+/plugins/+1button/#example-explicit-render gapi.plusone.render('live-preview') instead of: gapi.plusone.go(); Also needs "{"parsetags": "explicit"}" set: <script type="text/javascript" src="https://apis.google.com/js/plusone.js"> {"parsetags": "explicit"} </script> Edit You further have to make sure to call render after the jQuery load is complete. So the element is really in the DOM. $(function() { $("#btn").click(function(e) { e.preventDefault(); $('#live-preview').empty(); // Not necessary $("#live-preview").load('/displaycode.php #code', function() { gapi.plusone.render('live-preview'); }); }); gapi.plusone.render('live-preview'); });