Solve the problem of using ArcGIS API for Silverlight to load maps

Source: Internet
Author: User
Tags silverlight

First, the previous class is as follows:


Public class baseclass {public static string getfulluri (string olduristring) {string newuristring = olduristring; // process the relative address =============================================== ====================================== if (newuristring [0] = '/') {string shost = system. windows. browser. htmlpage. document. documenturi. host; int sport = system. windows. browser. htmlpage. document. documenturi. port; newuristring = "http: //" + shost + (sport = 80? "": ":" + Sport. tostring () + newuristring;} If (! Newuristring. startswith ("HTTP") {string shost = system. windows. browser. htmlpage. document. documenturi. host; int sport = system. windows. browser. htmlpage. document. documenturi. port; string slocal = system. windows. browser. htmlpage. document. documenturi. localpath; slocal = slocal. substring (0, slocal. lastindexof ('/'); Uri Turi = new uri ("http: //" + shost + (sport = 80? "": ":" + Sport. tostring () + slocal + "/" + newuristring, urikind. absolute); newuristring = Turi. tostring () ;}return newuristring ;}< ESRI: Map> <ESRI: map. layers> <ESRI: arcgistiledmapservicelayer id = "baselayer" url = "/ArcGIS/rest/services/hsdq/mapserver/"/> </ESRI: map. layers> </ESRI: Map> Public mainpage () {initializecomponent (); arcgistiledmapservicelayer layer = mymap. layers ["baselayer"] As arcgistiledmapservicelayer; layer. url = baseclass. getfulluri (layer. URL );}


In this way, you can solve the problem of accessing the same Intranet IP address as the Internet IP address.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.