|
POST
|
Do you have access to a roads layer with address ranges so you can create your own locator? Otherwise as already stated, ArcGIS Online geocoder costs. You can use other free geocoders such as Google or Bing but they limit your daily input. I think Google allows for 2,500 a day. If you need more information on creating your own locator, there is plenty of information out there on that: ArcGIS Help 10.1
... View more
07-18-2014
07:34 AM
|
0
|
4
|
2722
|
|
POST
|
Find and replace would be easier. You don't need any code.
... View more
07-17-2014
01:32 PM
|
0
|
0
|
1066
|
|
POST
|
Also, ArcGIS Explorer is free from ESRI. It was some similar tools to the desktop software. There is an Open Source GIS program called GRASS. I have no familiarity with it other than I know it exists. It looks to have some basic tools similar to ArcGIS Desktop. It may be a starting point. Good Luck!
... View more
07-17-2014
11:33 AM
|
1
|
0
|
1148
|
|
POST
|
Are you a college student? At my college, our Geography professors gave out ArcGIS desktop student evaluation copies with all the extensions. You may check with your department and see if they have these. These are 1 year licenses at no cost to the student.
... View more
07-17-2014
11:28 AM
|
2
|
1
|
1148
|
|
POST
|
It also appear that the to GeoCoordinateString help link is broken. I'm trying to access it through this link ArcGIS REST API
... View more
07-17-2014
10:49 AM
|
0
|
0
|
1516
|
|
POST
|
I do not show those operations. I assumed they were enabled when we upgraded to 10.2.2. How do I enable them? I'm not seeing a way to modify what operations are supported in geometry service though my server manager.
... View more
07-17-2014
10:35 AM
|
0
|
0
|
1516
|
|
POST
|
My lat/long display in DD and DMS. It's when I switch to the new advanced units it doesn't work properly. It's public and supports the following (version 10.2.2) Areas and Lengths Auto Complete Buffer Convex Hull Cut Densify Difference Distance Generalize Intersect Label Points Lengths Offset Project Relation Reshape Simplify Trim Extend Union
... View more
07-15-2014
11:52 AM
|
0
|
1
|
1988
|
|
POST
|
I had the comma in there. For some reason I didn't get it copied over. I still get the Geometry Service Error. Not sure what's going on. Here's a fiddle showing the ESRI measurement sample with the advancedLocationUnits. It doesn't return anything. My service will say Geometry Service Error where the lat/long is supposed to be. Edit fiddle - JSFiddle
... View more
07-15-2014
11:19 AM
|
0
|
3
|
1988
|
|
POST
|
You also have to use:
esri.config.defaults.geometryService = new esri.tasks.GeometryService("yourgeometryservice");
I get the added location units but when I try one, it returns Geometry Service Error.
... View more
07-15-2014
06:06 AM
|
0
|
1
|
1988
|
|
POST
|
Did you change your css and script links to the new version of the js api? This came out with the 3.10 release.
... View more
07-15-2014
05:32 AM
|
0
|
2
|
1988
|
|
POST
|
I see they added the ability to determine the xy locations for other coordinate systems, such as UTM, USNG, etc. When I add the param advancedLocationUnits:true var measurement = new Measurement({
map: map,
advancedLocationUnits:true
defaultAreaUnit: Units.SQUARE_MILES,
defaultLengthUnit: Units.KILOMETERS
}, dom.byId('measurement')); it adds the new units to the drop down but when I click on the map it doesn't return any thing. I was just playing in the sandbox for the measurement samples. Is there something else you need to add to return those projected coordinates?
... View more
07-14-2014
11:43 AM
|
0
|
25
|
10466
|
|
POST
|
The only way I have found to do it is using a feature layer with the popup template. If you use these you can add the line showAttachments:true, and an attachment link will show in the bottom of the popup window. var template = new PopupTemplate({
title: "My Title",
fieldInfos: [
{fieldName: "Address", label: "<b>Address:</b>", visible: true},
{fieldName: "City_1", label: "<b>City:</b>", visible: true}],
showAttachments:true,
});
var featureLayer = new FeatureLayer("myurl/FeatureServer/15",{
mode: FeatureLayer.MODE_ONDEMAND,
outFields: ["*"],
infoTemplate:template
}); Having this ability with a map service instead would be great.
... View more
07-01-2014
09:41 AM
|
0
|
0
|
1011
|
|
POST
|
Is this even possible since it refreshes each time a definition expression is requested. I am setting up check boxes for different definition expressions but when one checkbox is clicked it clears the results of another and adds the new definition expression. Here is some of my code. var layer0 = new FeatureLayer("myserver/FeatureServer/0", {
mode: FeatureLayer.MODE_ONDEMAND,
infoTemplate: layer0Template,
outFields:["*"]
});
layer0.setVisibility(false);
var checkBox0 = new CheckBox({
name: "checkBox0",
value: "agreed0",
checked: false,
onChange: function(b0){
if (b0 == true) {
layer0.setDefinitionExpression("PurposeCode = '13' AND PaidOffDate IS NOT NULL");
layer0.setVisibility(true);
} else {
layer0.setVisibility(false);
} }
}, "checkBox0").startup();
var checkBox1 = new CheckBox({
name: "checkBox1",
value: "agreed1",
checked: false,
onChange: function(b1){
if (b1 == true) {
layer0.setDefinitionExpression("PurposeCode = '13' AND PaidOffDate IS NULL");
layer0.setVisibility(true);
} else {
layer0.setVisibility(false);
} }
}, "checkBox1").startup();
map.addLayers([layer0]);
... View more
06-30-2014
08:20 AM
|
0
|
1
|
2244
|
|
POST
|
Well I know my issue now. The size of my data is causing the issue. Came across some blog posts from Derek that explains some ways to work with large datasets. Here is the link for some best practices using feature layers.
... View more
06-26-2014
01:14 PM
|
0
|
0
|
541
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-18-2015 12:38 PM | |
| 1 | 08-28-2015 09:13 AM | |
| 1 | 02-25-2016 03:51 PM | |
| 1 | 09-12-2014 08:32 AM | |
| 1 | 05-21-2015 10:12 AM |
| Online Status |
Offline
|
| Date Last Visited |
09-03-2021
11:21 AM
|