Уважаемые Гуру!
Я обращаюсь к сервисам arcgisonline.com следующим образом (Visual Studio silverligth c#):
<esri:Map x:Name="Map" Background="White" WrapAround="true" Extent="6095000,6810000,6900000,7258000">
<esri:ArcGISTiledMapServiceLayer ID="BaseLayer"
Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"/>
</esri:Map>
Может ли кто-нибудь подсказать как обращаться к сервисам OSM из arcgis API for silverlight?
vvoovv
January 27, 2014, 2:29pm
#2
Возможно, вы слышали о сайте http://google.ru
Если использовать ключевые слова из вашего вопроса (arcgis, openstreetmap, silverlight), то первый результат поиска скорее всего является ответом на ваш вопрос:
To use an OpenStreetMap tile layer in your map, add the OpenStreetMapLayer, select a style, and add attribution.
<esri:Map x:Name=“MyMap”>
<esri:OpenStreetMapLayer Style=“Mapnik” />
</esri:Map>
<esri:Attribution Layers=“{Binding ElementName=MyMap, Path=Layers}” />
When including the OpenStreetMapLayer in your map application, you must also include attribution. For the latest information, please read the usage guidelines for using OpenStreetMap tile layers in your application.
Интересный сайт! Спасибо, даже не ожидал , что все так просто)))