Skip to content

Commit

Permalink
Merge pull request #2856 from denverpierce/master
Browse files Browse the repository at this point in the history
Change default ArcGIS Imagery Providers to not allow picking
  • Loading branch information
kring committed Aug 23, 2015
2 parents bf38196 + 3b7526c commit 3f439ee
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ i-cubed Nationwide Prime, Getmapping, AeroGRID, IGN Spain, and IGP Portugal. Ad
contributed by the GIS User Community.\nhttp://www.esri.com',
creationFunction : function() {
return new ArcGisMapServerImageryProvider({
url : '//services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer'
url : '//services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer',
enablePickFeatures : false
});
}
}));
Expand All @@ -121,7 +122,8 @@ Chile, Colombia, and Venezuela; Ghana; and parts of southern Africa including Bo
http://www.esri.com',
creationFunction : function() {
return new ArcGisMapServerImageryProvider({
url : '//services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer'
url : '//services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer',
enablePickFeatures : false
});
}
}));
Expand All @@ -135,7 +137,8 @@ for informational and educational purposes as well as a basemap by GIS professio
mapping applications.\nhttp://www.esri.com',
creationFunction : function() {
return new ArcGisMapServerImageryProvider({
url : '//services.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/'
url : '//services.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/',
enablePickFeatures : false
});
}
}));
Expand Down

0 comments on commit 3f439ee

Please sign in to comment.