Questions tagged [esri]

ESRI (Environmental Systems Research Institute) is a GIS (geographical information systems) development company. ESRI produces GIS software

ESRI (Environmental Systems Research Institute) is an international supplier of GIS (geographical information systems) software, Web GIS and geodatabase management applications. ESRI produces GIS software

ESRI produces GIS software, such as the suite of ArcGIS software (ArcGIS Server, ArcGIS Desktop).

Esri uses the name ArcGIS to refer to its suite of GIS software products, which operate on desktop, server, and mobile platforms.

ESRI also develops APIs for use with their software and enables developers to build rich GIS software. Some of the APIs are developed to work with Silverlight, JavaScript, Java, .NET, and Flex.

More information about esri can be found:

Esri Wikipedia

Esri Java Script API Reference

Esri .NET API Reference

Esri Android API Reference

Esri iOS API Reference

Frequently used related tag:

1014 questions
0
votes
1 answer

What software/components do I need to build windows froms application hosts ESRI maps

I'll start working on windows forms application that hosts ESRI maps into it So, I'm wondering if any one know which components/software do I need to deploy either on the windows client or GIS server (if any) to get my job done ?
Ahmed Mozaly
  • 1,454
  • 2
  • 15
  • 22
0
votes
1 answer

Convertion from ESRI Shapefile into OS VectorMap Local GML

I have to create a program for converting ESRI Shapefiles into OS VectorMap Local GMLs. I'm looking for some information for my problem... I tried to use documentation from both sites: ESRI Shapefile documentation OS VectorMap Local…
Nickon
  • 9,652
  • 12
  • 64
  • 119
0
votes
1 answer

ArcGIS add-in: creating shapefile in backgroundworker, can't display the result in the same ArcMap session

The add-in was initally wrote without using backgroundworker and it worked fine. I was able to create a shapefile which can be added and viewed immediately after the execution in the same ArcMap session. Then I tried to add a progress bar to the UI…
xyk
  • 107
  • 7
0
votes
2 answers

How do I add button dynamically on ArcGIS Silverlight API?

How do I add button dynamically using C# on ArcGIS? I can create that using XAML, but I can't write that on C#, I checked on the website on ArcGIS, they allowed to add graphics dynamically, but there is no sample to show how to add controls such as…
PlayKid
  • 1,345
  • 5
  • 20
  • 33
0
votes
1 answer

Convert UTM to decimal degrees with Esri's ArcGis with C#

I need to convert a user's UTM input (WGS 1984) into Decimal Degrees, preferably using ESRI's ArcGis. I've already got the code to retrieve the zone (formatted like 14N, 22S, etc.) and the easting and northing factors. What do I do from…
Japtar
  • 1,125
  • 1
  • 14
  • 24
0
votes
1 answer

Reclassify ESRI raster using variables from a SQL Server table (connecting with pyodbc)

I am trying to reclass a raster file (representing vegetation and land cover types) using values stored in a SQL Server Express table. I have a set of ~400 species records in the table, with each row representing a different species, and a column…
jesselangdon
  • 181
  • 11
0
votes
1 answer

Adding GISmap view to WebView in iPhone

I am developing an iPhone app that works with phonegap. I want to connect it with the GIS map service of ArcGIS,esri. I saw some examples how they adding maps. They creating a xib files and designing there views and connect it to a…
vadim
  • 119
  • 3
  • 14
0
votes
2 answers

Trouble Understanding the ESRI API

I am new to the ESRI Javascript API. I do not understand what needs to go on the attr on the line with new graphic. var graphic = new esri.Graphic(geoPoint, symbol, attr, infoTemplate); This is the last piece of the many samples codes i have tied…
user1015711
  • 134
  • 1
  • 17
0
votes
1 answer

Mapping : How to add a close button to infotemplate

How can I add a close button to the info template? // My info template looks like this, 't' and 'Description' are variables var infoTemplate1 = new esri.InfoTemplate(Title + ' - ' + t,"Description:" + "
" + Description);
user1536452
  • 21
  • 1
  • 5
0
votes
1 answer

How to get tabular data from sql server from javascript

Here is my scenario: User enters in address Address is geolocated Geolocation is buffered (1 ft) Graphic returned is used in query feature to get a road ID All the above is pretty straight forward ESRI JavaScript API – now I am hitting a bit of…
shawn deutch
  • 427
  • 1
  • 6
  • 10
0
votes
1 answer

Opening ArcFM Attribute Editor from ArcObjects

I am trying to get the ArcFM Attribute Editor to open, after selecting a certain feature programatically. I figured the simplest way would be to grab a hold on a reference to its button, and call its OnClick method. Will that be the best solution?…
Noam Gal
  • 3,315
  • 3
  • 36
  • 53
0
votes
1 answer

Mapping: convert lan and lon to X Y

for(var i = 0; i < jsonIncident.length; i++) { var x = jsonIncident[i].Latitude var y = jsonIncident[i].Longitude //I can only retreive lat and lon for the image position //However to add an image i need it to be in x and y…
user1536452
  • 21
  • 1
  • 5
0
votes
1 answer

knockoutjs data binding not working with esri script

I am new to KnockOutJS. I am trying to use online sample, it works just fine and shows the expected results, if I don’t call the following script from html. But I need to use this script to display esri map on the browser later. If I uncomment the…
Sravan
  • 65
  • 1
  • 7
0
votes
1 answer

Round a arbitrary content control

I have an Esri ArcGis map control which I want to round around the edges. I am also using Prism4.0/MEF and SL4. I tried to place it in a border, but that doesn't work (the Esri control is loaded into the MapRegion, in another module):
Patrick Peters
  • 9,456
  • 7
  • 57
  • 106
0
votes
1 answer

Zoom into group of points in Flex

I have an application in Flex 4 with a map, a database of points and a search tool. When the user types something and does the search it returns name, details and coordinates of the objects in my database. I have a function that, when i click one of…
Bruno
  • 15
  • 5