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(esri 地图)和/或 BING 地图添加为 Android 上的 Google 地图应用程序的叠加层吗?我发现可以在网络版本中执行此操作,但没有关于 android 的信息。那么,是否有可能以某种方式?
试试BingMapsLayer 类。
MapView mv = new MapView(this); mv.addLayer(new BingMapsLayer("[your Bing Maps key]", MapStyle.Aerial)); setContentView(mv);