Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default ArcGIS Imagery Providers to not allow picking #2856

Merged
merged 1 commit into from
Aug 23, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,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 @@ -86,7 +87,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 @@ -100,7 +102,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