From silverlight to ASP

4389
10
Jump to solution
06-29-2015 06:18 AM
AnatoliiTerentiev
Occasional Contributor III

Dear Gurus!

I want to see what I can do with  arcgis when working  without Silverlight.

For example - how I can reproduce next silverlight code

            <esri:Map x:Name="myMap" Background="White" WrapAround="true" 
                  Extent="3200000,8500000,4250000,10130000" MouseClick="Map_MouseClick" >
                  <esri:OpenStreetMapLayer ID="OSMLayer" Style="Mapnik" />
                <esri:ArcGISDynamicMapServiceLayer ID="MyMap" 
                            Url="http://server:6080/ArcGIS/rest/services/karelia/MapServer" />
            </esri:Map>

in ASP without using silverlight?

0 Kudos
1 Solution

Accepted Solutions
ChrisSergent
Regular Contributor III

I have an app I created in .NET using the JavaScript API. Here is some sample code of how I control JavaScript related items using .NET: SOA-Final/default.aspx.vb at master · csergent45/SOA-Final · GitHub

View solution in original post

10 Replies
ChrisSergent
Regular Contributor III

I have an app I created in .NET using the JavaScript API. Here is some sample code of how I control JavaScript related items using .NET: SOA-Final/default.aspx.vb at master · csergent45/SOA-Final · GitHub

AnatoliiTerentiev
Occasional Contributor III

If I understand correctly, then something like this

ArcGIS API for JavaScript

0 Kudos
AnatoliiTerentiev
Occasional Contributor III

Thank you, Chris, I did not notice your reply in time!

ChrisSergent
Regular Contributor III

No problem. If you are interested, I created a group for .NET developers here: .NET and the Esri JavaScript API

I develop in both just the JavaScript API as well as .NET integration with the JavaScript API.

0 Kudos
AnatoliiTerentiev
Occasional Contributor III

Thank you, certainly join!

AnatoliiTerentiev
Occasional Contributor III

Where I can  download Arcgis API for Javascript?  In this   SDK Downloads | ArcGIS for Developers​ I did not see download link only for JavaScript

0 Kudos
AnatoliiTerentiev
Occasional Contributor III
0 Kudos
ChrisSergent
Regular Contributor III

I see you have the information on the other group.

0 Kudos
AnatoliiTerentiev
Occasional Contributor III

In any case - thanks you very much, Chris!!!