-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Access Token when creating an ArcGISMapServerImageryP…
…rovider (#11098) * Implemented secure arcgis services access. * updated arcgsis icons * changes based on code review * doc language revisions * updates based on review and fixed failing tests * clean up * Cleanup * Cleanup Documentation * Cleanup test * Simplify ArcGIS Developer key storage * Update API key, fix casing, update release guide * Fix changes.md * File case fix --------- Co-authored-by: George Owen <[email protected]> Co-authored-by: Gabby Getz <[email protected]>
- Loading branch information
1 parent
002002c
commit 45a2007
Showing
15 changed files
with
642 additions
and
366 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* ArcGisBaseMapType enumerates the ArcGIS image tile layers that are supported by default. | ||
* | ||
* @enum {number} | ||
* @see ArcGisMapServerImageryProvider | ||
*/ | ||
const ArcGisBaseMapType = { | ||
SATELLITE: 1, | ||
OCEANS: 2, | ||
HILLSHADE: 3, | ||
}; | ||
export default Object.freeze(ArcGisBaseMapType); |
Oops, something went wrong.