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
| /** | |
| * Creates a static clone. Removes dependencies between | |
| * clone and original object. | |
| * @param obj | |
| * @return {*} | |
| */ | |
| function clone (obj) { | |
| if(obj == null || typeof(obj) != "object") { | |
| return obj; |
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
| dojo.require("dojox.lang.functional"); | |
| dojo.require("dojox.lang.functional.lambda"); | |
| dojo.require("dojox.lang.functional.curry"); | |
| dojo.require("dojox.lang.functional.fold"); | |
| dojo.declare("esri.ux.layers.ClusterLayer", esri.layers.GraphicsLayer, { | |
| constructor: function (a) { | |
| if (typeof Object.create === "undefined") { | |
| Object.create = function (d) { | |
| function c() {} | |
| c.prototype = d; |
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> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <!--The viewport meta tag is used to improve the presentation and behavior of the samples | |
| on iOS devices--> | |
| <meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"> | |
| <title>Select with feature layer</title> | |
| <link rel="stylesheet" href="http://js.arcgis.com/3.9/js/dojo/dijit/themes/tundra/tundra.css"> | |
| <link rel="stylesheet" href="http://js.arcgis.com/3.9/js/esri/css/esri.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
| /* Copyright 2012 ESRI | |
| * | |
| * All rights reserved under the copyright laws of the United States | |
| * and applicable international laws, treaties, and conventions. | |
| * | |
| * You may freely redistribute and use this sample code, with or | |
| * without modification, provided you include the original copyright | |
| * notice and use restrictions. | |
| * | |
| * See the sample code usage restrictions document for further information. |
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
| /* Copyright 2012 ESRI | |
| * | |
| * All rights reserved under the copyright laws of the United States | |
| * and applicable international laws, treaties, and conventions. | |
| * | |
| * You may freely redistribute and use this sample code, with or | |
| * without modification, provided you include the original copyright | |
| * notice and use restrictions. | |
| * | |
| * See the sample code usage restrictions document for further information. |
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> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/> | |
| <title>Basic jQuery Mobile Map</title> | |
| <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" /> | |
| <link rel="stylesheet" type="text/css" href="http://js.arcgis.com/3.7/js/esri/css/esri.css"> | |
| <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> | |
| <script type="text/javascript" src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.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
| /** | |
| * Timer that runs in a node child process. | |
| * Can be used to control multiple things in the main application. | |
| * @type {*} | |
| */ | |
| var timers = require("timers"); | |
| var ___backgroundTimer; |
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 http = require("http"); | |
| Retrieve = function(){ | |
| console.log("retrieve"); | |
| /** | |
| * Executes a GET request on the given url and returns a JSON object. | |
| * Default timeout is 20 seconds. | |
| * @param url |
NewerOlder