|
POST
|
Hi Mike Crook, The Beta version does not have all the widgets included in it. Even if you can access the module it may not work properly. Further versions of Beta will add more widget to the API. As of now, widgets that you can see in API Reference of Beta 2 are the only ones that are working. Check under widgets at Index | API Reference | ArcGIS API for JavaScript. I will strongly recommend that you use the Beta Versions for Proof of Concept and testing. Let me know if that helps. Thanks, Akshay
... View more
12-01-2015
04:52 PM
|
0
|
0
|
1874
|
|
POST
|
Hi Alex, Currently it is not possible to make dynamic layer offline using JavaScript application. Dynamic layer generates the tiles at server end as per the request and essentially needs a connected environment. As of now JavaScript API cannot read .mpk files or .geodatabase files directly from your machine like Runtime applications which are basically windows applications. I am not sure how heavy your symbology is but you should be able to render it on client. Thanks, Akshay
... View more
11-05-2015
03:07 PM
|
0
|
0
|
719
|
|
POST
|
Hi abu khan, I was wondering if you have tried using dojo Floating pane? You can use this to open floating panel. dojox.layout.FloatingPane — The Dojo Toolkit - Reference Guide You can also check the attached sample to see how this can work. Thanks, Akshay Harshe
... View more
11-05-2015
02:47 PM
|
0
|
0
|
746
|
|
POST
|
Hi David, As I mentioned, this widget is still in BETA so as of now it does not work with the legend in the same widget you can check the note in the link I provided in my previous reply. NOTE: A legend is not included along side each layer. Use the Legend widget for displaying information about the layers. Toggling of map services, KML and WMS sublayers outside of the widget is not supported, in addition to sublayers that are out of scale range. As of now I do not have that information if there are plans of including a legend in the layerlist widget. But I believe that can be a good enhancement. Thanks, Akshay
... View more
10-07-2015
09:20 AM
|
1
|
1
|
1874
|
|
POST
|
Hi Mike, I understand you are willing to have some knowledge about implementing a Table of Content list in the 4.0 API. I believe we we have a widget that is currently available for that in 3.14. If you haven't had a chance to check this out before. Please have a look at LayerList Widget here: LayerList | API Reference | ArcGIS API for JavaScript. Just bear in mind that this widget is still in Beta and may have some unfixed bugs. As of now this is not available in 4.0 Beta1. Does that answer your questions? Let us know if you have any specific questions about starting out on your own for implementing that in 4.0 I will try making some suggestions if possible. Thanks, Akshay
... View more
10-05-2015
04:38 PM
|
0
|
5
|
1874
|
|
POST
|
Hi Sandeep, Is this something you are looking for? arcgis-runtime-samples-dotnet/DistanceFromGeometry.xaml at master · Esri/arcgis-runtime-samples-dotnet · GitHub Thanks, Akshay
... View more
07-08-2015
08:45 AM
|
0
|
0
|
1235
|
|
POST
|
I agree with your opinion Kristian Ekenes. Also, documentation is not very clear on explaining details about autoSelect.
... View more
07-07-2015
03:32 PM
|
0
|
0
|
1877
|
|
POST
|
Hi Jeff, I agree with Kristian. Also, If we look at AutoSelect function specifically, I don't think we can log a bug against that because this function is dependent on FindAddressCandidate task's results and on correct results this works completely fine. The suggestions given in the box below are result of the Suggest task and actual address is returned by the FindAddressCandidates. If you are writing a specific address and you hit ENTER button you are not selecting the suggestion, instead, It will always give a priority to the text that you have typed in the box (Even if it is spelled incorrect) over what is the first suggestion and send that to the FindAddressCandidate. So, I might not see this as bug, It will probably just by design. Kristian Ekenes can you provide some insight on that. Also, if you type the address that you have given( "1021 N Grand Ave E, Sp") in GOOGLE Maps and hit ENTER button it will not select the first suggestion and will behave identically returning no results. If you want it to customize and add a behavior like that I would recommend checking out Suggest-Results event. You may be able to get the first value and complete the search box on "TAB" Button click leaving the enter button to function as it is. Let me know your thoughts. Thanks, Akshay
... View more
07-07-2015
02:03 PM
|
0
|
0
|
1877
|
|
POST
|
Derek, I am just giving an example.. adding 10000 is just too much deviation. You will need to figure out how and where you want to move the point it can be just -10 or anything. This is not really efficient which is why I said you will not be able to determine which is the other side of the road. The best option is to get the address on the other side of the road somehow . Can you explain your workflow little bit? I can try to make a suggestion if I can! Thanks, Akshay
... View more
07-07-2015
01:38 PM
|
0
|
1
|
1603
|
|
POST
|
Hi Everyone, Here is something that might get you started. Esri/sencha-touch-map-checkin-js · GitHub Many of these repositories are managed and developed by our developers if you have any issues specific to them please submit an issue in GitHub. I hope this will serve you well. Thanks, Akshay Esri Technical Support.
... View more
07-07-2015
11:03 AM
|
0
|
0
|
1227
|
|
POST
|
Hi Derek, It is really difficult to offset the searched point to left or right of the street. And there is no out of the box functionality like that. However, as Josh suggested you are able to use onSearchResults event to modify the geometry of the located point. You Turn the autoNavigate and tweak the resulting geometry something like following then set extent as needed. s.on("search-results", function (evt){
console.log("x Coordinate is : " + evt.results[0][0].feature.geometry.x + " Y Coordinate is : " + evt.results[0][0].feature.geometry.y);
evt.results[0][0].feature.geometry.x = evt.results[0][0].feature.geometry.x + 10000;// Tweak the geomery here.
evt.results[0][0].feature.geometry.y = evt.results[0][0].feature.geometry.y + 10000;
console.log("NEW x Coordinate is : " + evt.results[0][0].feature.geometry.x + " NEW Y Coordinate is : " + evt.results[0][0].feature.geometry.y);
}); Let me know if this helps. Thanks, Akshay Harshe Esri Technical Support.
... View more
07-07-2015
09:45 AM
|
1
|
4
|
1603
|
|
POST
|
If the application loads and data doesn't show up and you know you haven't touched the code, may be check if all your services are working directly at the REST endpoint and your application has access to it. This can be a potential security issue. Do you have any other error on the console in developer tools?
... View more
05-22-2015
08:30 AM
|
0
|
0
|
3208
|
|
POST
|
You are welcome Chris. Let me know if you have any questions.
... View more
05-22-2015
08:24 AM
|
0
|
0
|
1833
|
|
POST
|
Hi, Few things to remember When you write esriConfig.defaults.io.proxyUrl = "http://YourDOMAINName/proxy/proxy.ashx"; make sure you use the domain name from you are using the application to access your proxy. If you write "localhost" then make sure you access your application via "localhost". Also, there was some programmatic error in the code that I Fixed please see the file attached. Make sure you configure your proxy.config file correctly.(with Username and password for the referenced urls). I am assuming that you know credentials to access THIS content or the content you are using. If you haven't had a chance to configure your proxy then please follow instructions on our blog: Setting up a Proxy | Support Services Blog See the attached modified code. I haven't gone through the entire code but it not just gives Token required error. If this isn't the issue, let me know how I can repro this. Thanks, Akshay
... View more
05-21-2015
04:14 PM
|
1
|
2
|
1833
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | a week ago | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 3 | 2 weeks ago | |
| 5 | 2 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|