|
POST
|
Can you please take a look at this image and let me know what could be the reason that ArcGIS Server is not showing the "Get Token" link on it HTML page?
... View more
03-14-2017
02:36 PM
|
0
|
0
|
1039
|
|
POST
|
Trying to create an Enterprise Geodatabase on top SQL Server Database server. can you please let me know what are the must have Server Roles for SDE User? Thanks
... View more
03-09-2017
12:03 PM
|
0
|
1
|
2202
|
|
POST
|
I have a WPF application called WpfApplication1. In ManiWindow.xaml I have a Snippet <esri:MapView x:Name="MyMapView"> </esri:MapView> and in ManiWindow.xmal.cs I only have namespace WpfApplication1
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}
}
According to ESRI we can add the Map to the MapView as as long as we have an empty MapView has been added to the page at design time and has been given the name MyMapView (<esri:MapView x:Name="MyMapView"/>. Now my question is how/ where should I add this code to get map running? // create a new Map
var myMap = new Esri.ArcGISRuntime.Controls.Map();
// create a new layer (world street map tiled layer)
var uri = new Uri("http://services.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServer");
var baseLayer = new Esri.ArcGISRuntime.Layers.ArcGISTiledMapServiceLayer(uri);
// (give the layer an ID so it can be found later)
baseLayer.ID = "BaseMap";
// add the layer to the Map
myMap.Layers.Add(baseLayer);
// set the initial view point
var mapPoint = new Esri.ArcGISRuntime.Geometry.MapPoint(-117.445, 33.9,
Esri.ArcGISRuntime.Geometry.SpatialReferences.Wgs84);
var initViewPoint = new Esri.ArcGISRuntime.Controls.ViewpointCenter(mapPoint, 250000);
myMap.InitialViewpoint = initViewPoint;
// assign the Map to the MapView's Map property
this.MyMapView.Map = myMap;
... View more
02-09-2017
12:37 PM
|
1
|
1
|
2728
|
|
POST
|
Thanks a lots Asrujit. You are right I am not seeing the instance ( GISDataServer) on my SQL Sever Management Database Engine list.
... View more
01-31-2017
01:17 PM
|
0
|
0
|
960
|
|
POST
|
We are facing to following error Executing: CreateEnterpriseGeodatabase SQL_Server GISDataServer\WIN-PAML WaterNet DATABASE_AUTH sa ***** SDE_SCHEMA sde ***** # E:\Utility\Key\keycodes
Start Time: Tue Jan 31 11:20:29 2017
Failure to access the DBMS server
Failed to execute (CreateEnterpriseGeodatabase).
Failed at Tue Jan 31 11:20:44 2017 (Elapsed Time: 15.52 seconds) When trying to Create an Enterprise Geodatabase which is installed on an SQL Serverserver database called GISDataServer which is installed on top a machine which called PAML WaterNet( out of our network). we also tried as but still getting same issue. Can toy please let me know what I am doing wrong?
... View more
01-31-2017
11:35 AM
|
0
|
4
|
1272
|
|
POST
|
Thanks Again Robert, Just one final question As you said the locator is functioning now but when I try to get the address like this locator.locationToAddress(new Point(-83.000369,40.055185, new SpatialReference({ wkid: 4326 })), 100);
console.info(locator.address.Street);
console.info(locator.Street); I am just getting undefined in return! isn't it the address available through the locator object?
... View more
01-24-2017
12:11 PM
|
0
|
1
|
879
|
|
POST
|
Thanks for reply Robert, The promise all looks very complicated! In order to get a better understanding, can you please let me know why this code also not working?! $('#locator').on("click", function() {
locator.outSpatialReference = map.spatialReference;
locator.locationToAddress(webMercatorUtils.webMercatorToGeographic(-83.000369,40.055185), 100);
}); As you can see I am only passing X and Y of one single location to locationToAdress()! and in return I am getting this error dojo.io.script error Error: Unable to complete operation.
at Object.f.load (init.js:980)
at init.js:87
at c (init.js:103)
at d (init.js:103)
at b.Deferred.resolve.callback (init.js:105)
at c (init.js:104)
at d (init.js:103)
at b.Deferred.resolve.callback (init.js:105)
at init.js:996
at h (init.js:107)
... View more
01-24-2017
11:36 AM
|
0
|
3
|
879
|
|
POST
|
Using ArcGIS JavaScript API 3.19 I am trying to do a bulk reverse geocoding like var locator = new Locator("http://dummydomain:6080/arcgis/rest/services/TestGeocoder/GeocodeServer");
map.on("load", function(evt) {
var points= [{
"x": -83.000369,
"y": 40.055185
}, {
"x": -83.000031,
"y": 40.051250
}];
locator.outSpatialReference = map.spatialReference;
var options = {addresses: points};
locator.locationToAddress(options);
}); I am not getting any error on page but the map screen looks empty! can you please let me know what I am doing wrong? and how I can export the points address to console? Thanks
... View more
01-24-2017
11:04 AM
|
0
|
5
|
1399
|
|
POST
|
we have a (Geocode Service) which has enabled with Batch Geocoding parameters as now when we test the service like {x:-83.000369, y:40.055185} , {x:-83.000031, y:40.051250}
at It only returns one Point Point:
X: -83.00030916909509
Y: 40.05520839180167
Spatial Reference: 4326 (4326) can you please let me know what we are doing wrong? Thanks
... View more
01-24-2017
10:09 AM
|
0
|
0
|
855
|
|
POST
|
When I have the code like this map.addLayer(schoolGraphicLayer);
var schoolGraphicsExtent = graphicsUtils.graphicsExtent(map.graphics.graphics);
$(".zoom-to-point").on('click', function(){
map.setExtent(schoolGraphicsExtent, true);
}); I am getting this error Uncaught TypeError: Cannot read property 'graphics' of null and when I update the code to map.addLayer(schoolGraphicLayer);
$(".zoom-to-point").on('click', function(){
var schoolGraphicsExtent = graphicsUtils.graphicsExtent(map.graphics.graphics);
map.setExtent(schoolGraphicsExtent, true);
}); I am not getting any error but the map zoom out to some where far from the area of interest
... View more
01-18-2017
11:02 AM
|
0
|
2
|
1570
|
|
POST
|
Thanks thejus kambi this is working somehow! but it is zooming out to another place on the map! do I have to change the: map.graphics.graphics to map.graphics.schoolGraphicLayer at: var schoolGraphicsExtent = graphicsUtils.graphicsExtent(map.graphics.graphics);
... View more
01-18-2017
10:51 AM
|
0
|
0
|
1570
|
|
POST
|
Thanks Robert, but do we have to generate FeatureLayer to set the Zoom to the Layer?
... View more
01-18-2017
09:48 AM
|
0
|
6
|
1570
|
|
POST
|
Thanks Robert, this is working perfectly. Just one more question? Can we use the same mechanism to get vertices of Polygons and Line or Polylines , as well?
... View more
01-18-2017
09:21 AM
|
0
|
1
|
1013
|
|
POST
|
You are right console.log() is returning undefined can you please let me know why and how I can fix this? should I set an initial custom extent?
... View more
01-17-2017
03:25 PM
|
0
|
8
|
3028
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-25-2017 08:32 AM | |
| 1 | 07-04-2017 01:47 PM | |
| 1 | 08-15-2017 02:44 PM | |
| 1 | 05-19-2017 02:36 PM | |
| 1 | 02-09-2017 12:37 PM |
| Online Status |
Offline
|
| Date Last Visited |
12-31-2020
08:22 PM
|