ArcGIS API for JS无法使用试用帐户

时间:2016-02-26 05:25:08

标签: gis arcgis-js-api

我刚刚开始使用ArcGIS API for JavaScript。但样本对我不起作用。我想问题是因为我的帐户状态。我正在使用一个试用帐户,据说有60天的免费试用和200个积分的分析。我想我可能应该在我的Esri帐户或其他东西中为订阅做一些额外的操作。有人可以帮我弄这个吗?谢谢!

屏幕截图如下: enter image description here

示例在这里:http://developers.arcgis.com/javascript/samples/analysis_connectoriginstodestinations/

1 个答案:

答案 0 :(得分:0)

您的帐户状态无关紧要,您正在使用

调用api
<script src="https://js.arcgis.com/3.16/"></script>

当我查看您的示例时,我看到Chrome的开发者工具中列出了以下内容:“请求的资源上没有'Access-Control-Allow-Origin'标题。”您可以尝试的一件事是添加您的web.config文件。例如:

<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
 </system.web>
  <system.webServer>
    <httpProtocol>
      <customHeaders>
        <add name="Access-Control-Allow-Origin" value="*" />
      </customHeaders>
    </httpProtocol>
  </system.webServer>
</configuration>