|
POST
|
Hi all I am taking a look to the Map Notes sample, and I would like to download the code to test it locally http://www.arcgis.com/home/item.html...b7f6d132338620 What I do not understand is how do I install this application, because on the download there is only a File Geodatabase and a mxd. How do I run this link with my own data: http://www.arcgis.com/apps/OnePane/b...e9195c2ddf94a6 Thanks
... View more
09-26-2013
01:25 PM
|
0
|
1
|
989
|
|
POST
|
Ok!!! You convinced me I am going to try the AMD syntax. Could you recommend a "ready-to-use open source apps" in javascript using AMD syntax with the following functions : Toolbar with the following buttons: - Zoom in , Zoom Out, Pan, Zoom Full Extent, Previous Extent, Next Extent - Select by Point, Select By Rectangle, By Polygon, by Circle, - Buffer, Measure, Overview - Find by address, Intersection - Tracing, Printing, Help Base map toolbar, shows custom maps instead of Esri base maps Map section, shows map, overview window, loading map image, popup results window Right panel with two content panels - TOC, allows to interactwith the map when the suer checks/unchecks layers the maps refreshes - Legend Multi search floating panel, search by address, intersection, folio, etc, Footer, shows combo box to select active layer
... View more
09-26-2013
06:02 AM
|
0
|
0
|
1234
|
|
POST
|
Yes I am checking both sources and I need to merge both of them.
... View more
09-26-2013
05:58 AM
|
0
|
0
|
782
|
|
POST
|
Hi all I was able to download samples without the new notation AMD Module Require. These samples are very easy to follow and with a code that can be understood. Where are this samples now? Thanks
... View more
09-25-2013
05:56 AM
|
0
|
5
|
1598
|
|
POST
|
Hi all I created a webmap in ArcGIs onlne, how can I modify my code to show the map online using the web map id? This is a sample of the existing code:
function init() {
var map = new esri.Map("map");
var tiledMapServiceLayer = new esri.layers.ArcGISTiledMapServiceLayer("http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer");
map.addLayer(tiledMapServiceLayer);
... View more
09-25-2013
05:05 AM
|
0
|
2
|
1160
|
|
POST
|
Hi all In API 1.6 the javascript source code started with: <script type="text/javascript">
dojo.require("esri.map");
var myMap, myTiledMapServiceLayer;
function init() {
Now in version 3.6 I see that the same code stars in a different way, with a require that covers the whole script. Why? I find the 1.6 way easier to read. <script src="http://js.arcgis.com/3.6/"></script>
<script>
var map;
require([
"esri/map", "esri/layers/FeatureLayer",
"esri/tasks/query", "esri/tasks/QueryTask",
"esri/tasks/GeometryService", "esri/tasks/BufferParameters",
"esri/graphic", "esri/InfoTemplate", "esri/symbols/SimpleMarkerSymbol",
"esri/symbols/SimpleLineSymbol", "esri/symbols/SimpleFillSymbol",
"esri/config", "dojo/_base/Color", "dojo/dom", "dojo/domReady"
], function(
... View more
09-25-2013
04:39 AM
|
0
|
5
|
4744
|
|
POST
|
Yes you answered my question, I wanted to know if it was possible to add as a template one of the application listed in the github after clicking the "Make a Web Application" button. I was looking for a way to create a web viewer application in JavaScript and upload it in ArcGIS Online. The standard templates do not have all the features I need. How do you customize an ArcGIs Online application for example showing the list of layers with check boxes and allowing the user to check/un-check them. Also adding different search criteria, by address, intersection folio, etc
... View more
09-24-2013
11:52 AM
|
0
|
0
|
817
|
|
POST
|
Found it: http://resources.arcgis.com/en/help/main/10.1/index.html#//01540000039p000000 But it only works in one way, only to download the project,then the project can not be uploaded
... View more
09-24-2013
10:09 AM
|
0
|
0
|
582
|
|
POST
|
Hi all, Which of both javascript viewers is easier to be customized, not only configuring it but adding some javascript code . http://davidspriggs.github.io/ConfigurableViewerJSAPI/viewer/ http://tryitlive.arcgis.com/wateraccess/ Regards
... View more
09-24-2013
05:08 AM
|
0
|
2
|
1128
|
|
POST
|
Hi all, What I do not understand very well is how easy is it to customize an existing online marketplace application , for example Esri Insights is a JavaScript-based web app, can I configure or customize it adding buttons, panels and other specific features such as tracing needed in my organization? http://marketplace.arcgis.com/listing.html?id=fef73db0214f4ab9b98b06e645b962f9 Thanks
... View more
09-23-2013
02:55 AM
|
0
|
0
|
1175
|
|
POST
|
Hi all, Is there a way to create a customized version of the ESRI INSIGHTS sample adding specific features realted to my organization. http://marketplace.arcgis.com/listing.html?id=fef73db0214f4ab9b98b06e645b962f9 Regards
... View more
09-23-2013
02:46 AM
|
0
|
1
|
3014
|
|
POST
|
Hi all Can I run these javascript samples with ArcGIS online and customize them or do I have to run them locally http://esri.github.io/#JavaScript Thanks
... View more
09-19-2013
08:48 AM
|
0
|
1
|
2642
|
|
POST
|
Hi all Can I run these javascript samples with ArcGIS online or do I have to run them locally http://esri.github.io/#JavaScript Thanks
... View more
09-19-2013
06:21 AM
|
0
|
3
|
1232
|
|
POST
|
This code works: function buildLayerList(layer) {
var infos = layer.layerInfos, info;
var items = [];
for (var i = 0, il = infos.length; i < il; i++) {
info = infos;
if (info.defaultVisibility) {
visible.push(info.id);
}
items = "<input type='checkbox' class='list_item' checked='" + (info.defaultVisibility ? "checked" : "") + "' id='" + info.id + "' onclick='updateLayerVisibility();' /><label for='" + info.id + "'>" + info.name + "</label>";
}
dojo.byId("layer_list").innerHTML = items.join();
// layer.setVisibleLayers(visible);
// map.addLayer(layer);
}
function getMapLayers() {
alert(myMap.layerIds.length);
for (var j = 0, jl = myMap.layerIds.length; j < jl; j++) {
var currentLayer = myMap.getLayer(myMap.layerIds );
buildLayerList(currentLayer)
// alert("id: " + currentLayer.id + ", visible: " + currentLayer.visible + ", opacity: " + currentLayer.opacity);
}
}
... View more
09-18-2013
06:37 AM
|
1
|
0
|
4014
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-01-2026 12:34 PM | |
| 1 | 12-02-2022 08:17 AM | |
| 1 | 12-26-2025 05:02 AM | |
| 1 | 08-05-2025 04:28 AM | |
| 1 | 08-05-2025 04:33 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|