|
POST
|
Yes I checked the samples and they are very clear!! If you try to add them to the JavaScript basic viewer it becomes very complicate. This template has a Home button but I do not know where it is coded in the source code http://www.arcgis.com/apps/StorytellingTextLegend/index.html And this is the template I am modifying to add the home button, it has onle a zoom In and Zoom Out buttons: http://www.arcgis.com/apps/OnePane/basicviewer/index.html Thanks
... View more
10-10-2013
10:31 AM
|
0
|
0
|
2925
|
|
POST
|
Hi all, I downloaded the JavaScript BasicViewer source code and I would like to add a few more buttons, for example the Home button, th Locator button, a select by rectangle button, a buffer button. Is there any place that explains where and how to add additional buttons. Thanks
... View more
10-10-2013
05:15 AM
|
0
|
13
|
6761
|
|
POST
|
Found that: http://www.bearpanther.com/2012/03/08/extendjsbasicviewer/ http://blogs.esri.com/esri/arcgis/2010/10/05/building-a-javascript-application-from-an-arcgis-com-template/
... View more
10-09-2013
06:22 PM
|
0
|
0
|
721
|
|
POST
|
hi all, I would like to customize the Basic viewer I donwloaded adding several buttons that existed from the deprecated Web ADF toolbar: - MapForward - "MapBack" - Select a current layer - Select drawing a rectangle - Buffer Any samples of how to add a button? <esri:Toolbar ID="Toolbar1" runat="server" BuddyControlType="Map" Group="Toolbar1_Group"
Height="28px" ToolbarItemDefaultStyle-BackColor="Transparent" ToolbarItemDefaultStyle-Font-Names="Arial"
ToolbarItemDefaultStyle-Font-Size="Smaller" ToolbarItemDisabledStyle-BackColor="Transparent"
ToolbarItemDisabledStyle-Font-Names="Arial" ToolbarItemDisabledStyle-Font-Size="Smaller"
ToolbarItemDisabledStyle-ForeColor="Gray" ToolbarItemHoverStyle-Font-Bold="True"
ToolbarItemHoverStyle-Font-Italic="True" ToolbarItemHoverStyle-Font-Names="Arial"
ToolbarItemHoverStyle-Font-Size="Smaller" ToolbarItemSelectedStyle-BackColor="WhiteSmoke"
ToolbarItemSelectedStyle-Font-Bold="True" ToolbarItemSelectedStyle-Font-Names="Arial"
ToolbarItemSelectedStyle-Font-Size="Smaller" ToolbarStyle="ImageOnly" WebResourceLocation="/aspnet_client/ESRI/WebADF/"
Width="308px" ToolbarItemHoverStyle-BorderColor="Black" ToolbarItemSelectedStyle-BorderColor="Black"
CurrentTool="MapPan" Alignment="Right" ToolbarItemDefaultStyle-BorderColor="Transparent"
CssClass="appFloat2" ToolbarItemHoverStyle-BackColor="White">
<ToolbarItems>
<esri:Tool ClientAction="DragRectangle" DefaultImage="esriZoomIn.png" HoverImage="esriZoomIn.png"
JavaScriptFile="" Name="MapZoomIn" SelectedImage="esriZoomIn.png" ServerActionAssembly="ESRI.ArcGIS.ADF.Web.UI.WebControls"
ServerActionClass="ESRI.ArcGIS.ADF.Web.UI.WebControls.Tools.MapZoomIn" Text="Zoom In"
ToolTip="Zoom In" />
<esri:Tool ClientAction="DragRectangle" DefaultImage="esriZoomOut.png" HoverImage="esriZoomOut.png"
JavaScriptFile="" Name="MapZoomOut" SelectedImage="esriZoomOut.png" ServerActionAssembly="ESRI.ArcGIS.ADF.Web.UI.WebControls"
ServerActionClass="ESRI.ArcGIS.ADF.Web.UI.WebControls.Tools.MapZoomOut" Text="Zoom Out"
ToolTip="Zoom Out" />
<esri:Tool ClientAction="DragImage" DefaultImage="esriPan.png" HoverImage="esriPan.png"
JavaScriptFile="" Name="MapPan" SelectedImage="esriPan.png" ServerActionAssembly="ESRI.ArcGIS.ADF.Web.UI.WebControls"
ServerActionClass="ESRI.ArcGIS.ADF.Web.UI.WebControls.Tools.MapPan" Text="Pan"
ToolTip="Pan" />
<esri:Command ClientAction="" DefaultImage="esriZoomFullExtent.png" HoverImage="esriZoomFullExtent.png"
JavaScriptFile="" Name="MapFullExtent" SelectedImage="esriZoomFullExtent.png"
ServerActionAssembly="ESRI.ArcGIS.ADF.Web.UI.WebControls" ServerActionClass="ESRI.ArcGIS.ADF.Web.UI.WebControls.Tools.MapFullExtent"
Text="Full Extent" ToolTip="Full Extent" />
<esri:Command BuddyItem="MapForward" ClientAction="ToolbarMapBack" DefaultImage="~/images/backward.png"
Disabled="True" DisabledImage="~/images/backward_disabled.png" HoverImage="~/images/backward.png"
JavaScriptFile="" Name="MapBack" SelectedImage="~/images/backward.png" Text="Back"
ToolTip="Back Extent" />
<esri:Command BuddyItem="MapBack" ClientAction="ToolbarMapForward" DefaultImage="~/images/forward.png"
Disabled="True" DisabledImage="~/images/forward_disabled.png" HoverImage="~/images/forward.png"
JavaScriptFile="" Name="MapForward" SelectedImage="~/images/forward.png" Text="Forward"
ToolTip="Forward Extent" />
<esri:Command ClientAction="toggleGoToLocation();" DefaultImage="~/images/esriGoToLocation.png"
HoverImage="~/images/esriGoToLocation.png" JavaScriptFile="" Name="GoToLocation"
SelectedImage="~/images/esriGoToLocation.png" Text="Go To Location" ToolTip="Go To Location" />
<esri:Command ClientAction="toggleMagnifier();" DefaultImage="~/images/show-magnify.png"
HoverImage="~/images/show-magnify.png" JavaScriptFile="" Name="Magnifier" SelectedImage="~/images/show-magnify.png"
ToolTip="Magnifier" />
<esri:Tool ClientAction="MapIdentifyTool()" Cursor="pointer" DefaultImage="esriIdentify.png"
HoverImage="esriIdentify.png" JavaScriptFile="" Name="MapIdentify" SelectedImage="esriIdentify.png"
Text="Map Identify" ToolTip="Map Identify" ServerActionAssembly="ESRI.ArcGIS.ADF.Web.UI.WebControls"
ServerActionClass="ESRI.ArcGIS.ADF.Web.UI.WebControls.MapIdentify" />
<esri:Tool ClientAction="startMeasure()" DefaultImage="~/images/measure.png" HoverImage="~/images/measure.png"
JavaScriptFile="" Name="Measure" SelectedImage="~/images/measure.png" ToolTip="Measure" />
<esri:Command ClientAction="toggleOverviewMap()" DefaultImage="~/images/show-overview-map.png"
HoverImage="~/images/show-overview-map.png" JavaScriptFile="" Name="OverviewMapToggle"
SelectedImage="~/images/show-overview-map.png" ToolTip="Show OverviewMap" />
</ToolbarItems>
<BuddyControls>
<esri:BuddyControl Name="Map1"></esri:BuddyControl>
</BuddyControls>
</esri:Toolbar>
... View more
10-09-2013
12:03 PM
|
0
|
2
|
3573
|
|
POST
|
Hi all I would like to display the Home Button on the displayslider when enabled to the regular Basic viewer. Thanks
... View more
10-09-2013
10:08 AM
|
0
|
0
|
1750
|
|
POST
|
Which one do you populate inside the index.html file in the Basic Viewer webmap or appid? thanks The web map id is the unique id of an arcgis.com web map. To find the web map id, view your web map in ArcGIS.com and you can see the web map id in the URL. The appid is the unique identifier for an application that is published using the Basic Viewer template. Follow the Publish steps in this help document to publish an app. Once the app is published the appid is a url parameter for that applciation. http://resources.arcgis.com/en/help/arcgisonline/index.html#//010q0000008t000000
... View more
10-08-2013
06:16 PM
|
0
|
0
|
1566
|
|
POST
|
Hi all I downloaded the Basic Viewer pointing to a map in ArcGIS Online. Is thre a way to configure the source code to point to a map service in local? Thanks
... View more
10-08-2013
11:50 AM
|
0
|
1
|
2335
|
|
POST
|
Hi all In this map you can see that it has 4 groups of layers: - Map Notes - Water - Sewer - Storm water But when users browse a map to check the water, storm water or sewer network they can only check/uncheck the whole group, but they also want to uncheck some layers to only see for example valves, pump stations, pipes of a certain type, etc. How can we go from the group level to the layer level to check/uncheck them? http://www.arcgis.com/apps/OnePane/basicviewer/index.html?appid=8746539d974c4f2c808d8d32582b100b Thanks
... View more
10-08-2013
11:45 AM
|
0
|
1
|
982
|
|
POST
|
Hi again, When I run from ArcGIS Online an application downloaded from the link below as a Esri JavaScript Basic Viewer: http://www.arcgis.com/apps/OnePane/basicviewer/index.html?appid=3c0248e25adc4e508b116e44af652729 webmap: null, appid: "3c0248e25adc4e508b116e44af652729", and sharingurl: "http://www.arcgis.com", Or when I do the same thing with ArcGIS online in my organization http://<my Organization>.maps.arcgis.com/apps/OnePane/basicviewer/index.html?appid=3eb79e52f218455da98f8ec00af82a3e webmap: null, appid: "3eb79e52f218455da98f8ec00af82a3e", and sharingurl: "http://<My Organization>.maps.arcgis.com", It works without registering the map. What does not work are the pop-up windows
... View more
10-08-2013
10:23 AM
|
0
|
0
|
1381
|
|
POST
|
Hi all what is the difference between webmap and appid in the basic viewer? Where do I find these values? webmap: null,
// webmap: "dbd1c6d52f4e447f8c01d14a691a70fe",
//Modify this to point to your sharing service URL if you are using the portal
sharingurl: "http://www.arcgis.com",
//sharingurl: null,//for example: "http://www.arcgis.com",
//The id for the web mapping application item that contains configuration info - in most
////When editing you need to specify a proxyurl (see below) if the service is on a different domain
//Specify a proxy url if you will be editing, using the elevation profile or have secure services or web maps that are not shared with everyone.
proxyurl: "",
//cases this will be null.
appid: "8746539d974c4f2c808d8d32582b100b",
//appid: "",
... View more
10-08-2013
03:46 AM
|
0
|
4
|
6124
|
|
POST
|
Hi Antti, No I haven't share all features to public. But let me ask you something, the goal is to create a basic web viewer and allow only users from the organization to access it, not everyone on the web How can I do that? Hi, Have you shared all feature services to public?
... View more
10-08-2013
03:40 AM
|
0
|
0
|
1381
|
|
POST
|
Hi all Anyone customizing the Basic Viewer with more options, pointing locally to a map service ? http://www.arcgis.com/home/item.html?id=f232cac140a8495f9990cc9d2bb66dd9
... View more
10-07-2013
05:10 PM
|
0
|
0
|
832
|
|
POST
|
Hi all I am trying to build this "Water Map Change Request" in my ArcGIS account using my own maps, but I do not know how to set up the map click that popups an identity feature window. When clicking in a feature from the water, sewer or stormwater network it popups an identify window. How can I enable this feature in my sample? http://www.arcgis.com/apps/OnePane/basicviewer/index.html?appid=3c0248e25adc4e508b116e44af652729 Thanks
... View more
10-07-2013
10:11 AM
|
0
|
4
|
3002
|
|
POST
|
What are the limitations of ArcGIS Online? Which github template do you recommend? thanks -We used github templates and customized it at our end. -ArcGIS Online templates are also good but it has limitation
... View more
10-04-2013
08:56 AM
|
0
|
0
|
1034
|
|
POST
|
Yes I saw all of them, I am currently working with them.
... View more
10-03-2013
11:37 AM
|
0
|
0
|
823
|
| 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
|