|
POST
|
Hi all have you built a JavaScript viewer and are currently using it? - did you start from scratch? - did you use any of the JavaScript templates - did you use any github templates - did you use any ArcGIS Online templates download them modified them and then upload them - did you use the AMD style - any other approach? Thank you for sharing
... View more
10-03-2013
11:07 AM
|
0
|
3
|
1357
|
|
POST
|
Michael What about the Map Notes sample. http://www.arcgis.com/home/item.html?id=25db16cfe7b64501a0b7f6d132338620#www.arcgis.com/sharing/rest/content/items/75570a52b1e04d2f8933c0d33daae62d How can I test the web application?
... View more
10-02-2013
10:54 AM
|
0
|
0
|
785
|
|
POST
|
Hi all Is there a way to test with my own data with Water Utility maps and applications. When I hit download it downloads file geodatabases and maps. http://resources.arcgis.com/en/communities/local-government/01n40000000t000000.htm Thanks
... View more
09-30-2013
11:48 AM
|
0
|
2
|
1912
|
|
POST
|
I am looking for a sample that shows my own map service, using the new AMD style and syntax . Thanks This is the code I have with the old sysntax. dojo.require("dijit.layout.BorderContainer");
dojo.require("dijit.layout.ContentPane");
dojo.require("dijit.layout.AccordionContainer");
dojo.require("esri.map");
var myMap; // global variable representing the map
function init() {
var initialExtent = new esri.geometry.Extent({"xmin":-13050590.679808607,"ymin":3848824.1306140213,"xmax":-13033430.566958608,"ymax":3863366.2752452563,"spatialReference":{"wkid":102100}});
myMap = new esri.Map("mapDiv", {extent:initialExtent});
var baseLayer = new esri.layers.ArcGISTiledMapServiceLayer("http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer");
var opLayer1 = new esri.layers.ArcGISDynamicMapServiceLayer("http://sampleserver6.arcgisonline.com/arcgis/rest/services/NetworkAnalysis/SanDiego/MapServer",{ opacity:0.8 });
myMap.addLayers([baseLayer, opLayer1]);
}
dojo.addOnLoad(init);
... View more
09-27-2013
12:01 PM
|
0
|
1
|
1038
|
|
POST
|
Hi all Where are these maps located? Is there a way to customize them? http://resources.arcgis.com/en/communities/local-government/01n40000000t000000.htm The download only includes the maps and the file geodatabase, what do I do with that? thanks
... View more
09-27-2013
10:46 AM
|
0
|
0
|
2021
|
|
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
|
1016
|
|
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
|
1299
|
|
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
|
810
|
|
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
|
1663
|
|
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
|
1190
|
|
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
|
4790
|
|
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
|
847
|
|
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
|
590
|
|
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
|
1156
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 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 |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|