使用ArcGIS JS 4 API和AngularJS显示地图

时间:2016-05-02 22:53:48

标签: angularjs angularjs-directive esri arcgis-js-api

我是ArcGIS JS的新手,所以任何帮助都会非常感激。

作为起点,我想使用ArcGIS js API 4和AngularJS显示任何地图。任何指针或示例都会有所帮助。

由于

2 个答案:

答案 0 :(得分:1)

好吧,如果你正在寻找带有esri map的angularjs的直接指令; 以下是该示例。

使用esri map please click here...

了解更多有关angularjs的信息



<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns:beans="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns="http://www.springframework.org/schema/data/jpa"
  xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/data/jpa
    http://www.springframework.org/schema/data/jpa/spring-jpa.xsd">

  <repositories base-package="com.acme.repositories" />

</beans:beans>
&#13;
&#13;
&#13;

答案 1 :(得分:-1)

以下是使用 ArcGIS JS API 4.0

添加地图3d地图的代码

有关API和示例Please click here...

的更多详细信息

 require([
      "esri/Map",
      "esri/views/SceneView",
      "dojo/domReady!"
    ], function(Map, SceneView) {

      var map = new Map({
        basemap: "streets"
      });

      var view = new SceneView({
        container: "viewDiv",
        map: map,
        scale: 50000000,
        center: [-101.17, 21, 78]
      });

    });
 html,
    body {
      padding: 0;
      margin: 0;
    }
<link rel="stylesheet" href="https://js.arcgis.com/4.0beta3/esri/css/main.css">
  <script src="https://js.arcgis.com/4.0beta3/"></script>
<body>
  <div id="viewDiv"></div>
</body>

<强>已更新

以上示例基于dojo框架,因为ARCGIS js api与dojo绑定紧密...