This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link rel="stylesheet" type="text/css" href="jcsdl/lib/jquery.ui.custom.min.css" /> | |
| <link rel="stylesheet" type="text/css" href="jcsdl/lib/jquery.tipsy.css" /> | |
| <link rel="stylesheet" type="text/css" href="jcsdl/jcsdl.css" /> | |
| <link rel="stylesheet" type="text/css" href="index.css" /> | |
| <link rel="stylesheet" type="text/css" href="yourCustomJCSDLCssFile.css" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <head> | |
| ... | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | |
| <script type="text/javascript" src="jcsdl/jcsdl.min.js"></script> | |
| <link rel="stylesheet" type="text/css" href="jcsdl/jcsdl.min.css" /> | |
| ... | |
| </head> | |
| <body> | |
| ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| var editor = new JCSDLGui($("#jcsdl"), { | |
| definition : { | |
| targets : { | |
| amazon : { | |
| name : 'Amazon', | |
| fields : { | |
| author : { | |
| name : 'Author', | |
| icon : 'user', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| var editor = new JCSDLGui($("#jcsdl"), { | |
| animate : 0 | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
| <html> | |
| <head> | |
| <title>JCSDL Editor | Save query example</title> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | |
| <link rel="stylesheet" type="text/css" href="jcsdl/jcsdl.min.css" /> | |
| <script type="text/javascript" src="jcsdl/jcsdl.definition.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
| <html> | |
| <head> | |
| <title>JCSDL Editor | Load query example</title> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | |
| <link rel="stylesheet" type="text/css" href="jcsdl/jcsdl.min.css" /> | |
| <script type="text/javascript" src="jcsdl/jcsdl.definition.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
| <html> | |
| <head> | |
| <title>JCSDL Editor | Load query example</title> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | |
| <link rel="stylesheet" type="text/css" href="jcsdl/jcsdl.min.css" /> | |
| <script type="text/javascript" src="jcsdl/jcsdl.definition.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| var editor = new JCSDLGui($("#jcsdl"), { | |
| //Change the speed of animation to 0 | |
| animate : 0, | |
| save : function(code) { | |
| // output the resulting JCSDL code into a textarea | |
| $('textarea[name="jcsdl-output"]').val(code); | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var editor = new JCSDLGui($("#jcsdl"), { | |
| //Change the speed of animation to 0 | |
| animate : 2000, | |
| //Sets the Map Overlay element color, opacity, and stroke | |
| mapsOverlay : { | |
| strokeWeight : 1, | |
| strokeColor: '#ffffff', | |
| fillColor : '#ff0000', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| var editor = new JCSDLGui($("#jcsdl"), { | |
| //Change the speed of animation to 0 | |
| animate : 2000, | |
| //Sets the Map Overlay element color, opacity, and stroke | |
| mapsOverlay : { | |
| strokeWeight : 1, | |
| strokeColor: '#ffffff', |