Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 ArcGIS 很陌生,目前正在探索 js API。我还没有看到这方面的文档,但我可以使用 json 数据源(从 ajax 调用返回)作为我的地图的数据项/点吗?谁能给我举个例子?
如果您没有任何地图服务(ArcGIS、WMS、KML 等),而只是从其他地方获取的几何图形列表,则必须使用 GraphicsLayer。您可以使用地图的默认 GraphicsLayer 或添加另一个 GraphicsLayer。
对于每个几何:
map.graphics.add(new Graphic(geometry, symbol));