我是ArcGIS JS的新手,所以任何帮助都会非常感激。
作为起点,我想使用ArcGIS js API 4和AngularJS显示任何地图。任何指针或示例都会有所帮助。
由于
答案 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;
答案 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绑定紧密...