首页 > 编程语言 >ArcGIS Javascript sdk中API keys 的说明

ArcGIS Javascript sdk中API keys 的说明

时间:2023-08-29 09:34:27浏览次数:51  
标签:Map streets arcgis keys Javascript ArcGIS vector gray World

ArcGIS Javascript sdk中API keys 的说明

关于ArcGIS的APIkey具体使用

ArcGIS有那些底图用到了API keys,那些没有用到可以参考下面表格,最新改动请参考官网

Basemaps for use with API keys

Use of these basemaps requires an ArcGIS Developer subscription. To learn more about API keys, see the API keys section in the ArcGIS Developer documentation.

Value Source
arcgis-imagery Imagery Hybrid
arcgis-imagery-standard Imagery
arcgis-imagery-labels The reference layer from arcgis-imagery
arcgis-light-gray Light Gray Canvas
arcgis-dark-gray Dark Gray Canvas
arcgis-navigation Navigation
arcgis-navigation-night Navigation (Night)
arcgis-streets Streets
arcgis-streets-night Streets (Night)
arcgis-streets-relief Streets (with Relief)
arcgis-topographic Topographic
arcgis-oceans Oceans
arcgis-human-geography Human Geograpy Map - added in v.4.25
arcgis-human-geography-dark Human Geograpy Map Canvas - added in v.4.25
osm-standard OpenStreetMap
osm-standard-relief OpenStreetMap (with Relief)
osm-streets OpenStreetMap (Streets)
osm-streets-relief OpenStreetMap (Streets with Relief)
osm-light-gray OpenStreetMap (Light Gray Canvas)
osm-dark-gray OpenStreetMap (Dark Gray Canvas)
arcgis-terrain Terrain with Labels
arcgis-community Community Map
arcgis-charted-territory Charted Territory Map
arcgis-colored-pencil Colored Pencil Map
arcgis-nova Nova Map
arcgis-modern-antique Modern Antique Map
arcgis-midcentury Mid-Century Map
arcgis-newspaper Newspaper Map
arcgis-hillshade-light The hillshade layer from arcgis-topographic
arcgis-hillshade-dark

For use without an API key

Use of these basemaps requires a valid ArcGIS Online organizational subscription or an ArcGIS Enterprise license.

Value Source
satellite World Imagery
hybrid Hybrid Reference Layer and World Imagery
oceans World Ocean Reference and World Ocean Base
osm OpenStreetMapLayer
terrain World Reference Overlay and World Terrain Base
dark-gray-vector Dark Gray Canvas
gray-vector Light Gray Canvas
streets-vector World Street Map
streets-night-vector World Street Map (Night)
streets-navigation-vector World Navigation Map
topo-vector World Hillshade and World Topographic Map
streets-relief-vector World Hillshade and World Street Map (with Relief)
topo (deprecated) This basemap/service is now in Mature Support and is no longer updated. Please use topo-vector instead. World Topo Map
streets (deprecated) This basemap/service is now in Mature Support and is no longer updated. Please use streets-vector instead. World Street Map
dark-gray (deprecated) This basemap/service is now in Mature Support and is no longer updated. Please use dark-gray-vector instead. World Dark Gray Reference and World Dark Gray Base
gray (deprecated) This basemap/service is now in Mature Support and is no longer updated. Please use gray-vector instead. World Light Gray Reference and World Light Gray Base
national-geographic (deprecated) This basemap/service is now in Mature Support and is no longer updated. Please use the National Geographic Style WebMap instead. NatGeo World Map

标签:Map,streets,arcgis,keys,Javascript,ArcGIS,vector,gray,World
From: https://www.cnblogs.com/unlockth/p/17663907.html

相关文章

  • JavaScript 中的变量声明与赋值
    在计算机编程中,使用名称(或标识符)来表示值是最基本的技术之一。将名称与值绑定为我们提供了一种在程序中引用值并利用它们的方式。当涉及到绑定名称与值时,我们通常称之为将值赋给变量。术语“变量”暗示了新的值可以被赋给它,这意味着与变量关联的值在程序执行过程中可能会改变。如......
  • href="javascript:void(0)
    href="javascript:void(0);"是一种在HTML中使用JavaScript的常见方法之一。它用于将链接的点击操作关联到一个JavaScript动作或函数,而不是实际跳转到一个新的URL。在某些情况下,您可能想要在链接被点击时执行一些JavaScript代码,而不是加载一个新的页面。在这种情况下,您......
  • Android平台签名证书(.keystore)生成
    安装JRE环境地址:https://www.oracle.com/java/technologies/downloads/#java8C:\ProgramFiles\Java\jdk-1.8这是我都默认安装地址安装成功后配置环境变量%JAVA_HOME%\bin生成签名证书使用keytool-genkey命令生成证书:keytool-genkey-aliastestalias-keyalgRSA-keysize2048......
  • 20 JavaScript和HTML交互
    20JavaScript和HTML交互在HTML中可以直接在标签上给出一些事件的触发.例如,页面上的一个按钮.<inputtype="button"value="点我"/>我们能够知道此时在页面中会产生一个按钮.但是该按钮无论如何进行点击.都不会触发任何事件.但,此时我要告诉你,人家其实触发了.只是......
  • javascript学习笔记day7
    今天学了挺多新东西的,在学校教的东西都是很老了东西了,果然互联网完全真能靠自学,下面是今天的笔记varletconst优先使用const,即不会改变的变量,假设后续发现这个变量会改变就再使用letconsole.log打印属性console.dir打印信息innerText只修改标标签内容不解析标签innerHTML识......
  • 19 JavaScript的hook
    19JavaScript的hook什么叫hook?Hook技术又叫钩子函数,在系统没有调用该函数之前,钩子程序就捕获该消息,钩子函数先得到该函数的控制权,这时钩子函数既可以改变该函数的执行行为,还可以强制结束消息的传递,简单来说。就是把系统的程序拉出来,来变成我们自己执行的片段。我们可以控制执行......
  • 18 JavaScript中的三元运算
    18JavaScript中的三元运算先来看一个例子:leta=10;letb=20;letd=a>b?a:bconsole.log(d); //20三元运算语法:条件表达式?A:B说明:当条件表达式为True,运算后的结果为A,否则结果为B。接下来在看一个恶心的:leta=10;letb=20;letc=5;letd=17......
  • javascript中parseInt的问题
    今天遇到一个有趣的问题,就是在用javascript的parseInt函数时,parseInt("08")或者parseInt("09")返回的居然是0,而parseInt("01")...parseInt("07")都是正确的,一开始很难理解,后来发现出现这个问题的原因是当在前面有"0"时,javascript会认为这是一个八进制数,而"08"和"09"不是一个合法......
  • 你不知道的 JavaScript - “this”
    JavaScript里的this到底指得是什么?很多人都会告诉你this指的是当前对象。这样理解对么?在大多数情况下确实没错。比如我们经常会在网页上写这样的JavaScript: <inputtype="submit"value="提交"onclick="this.value='正在提交数据'"/......
  • JavaScript FSO属性大全
     什么是FSO?FSO即FileSystemObject文件系统对象,是一种列表Windows磁盘目录和文件,对目录和文件进行删除、新建、复制、剪切、移动等操作的技术。使用FSO网站的好处:直接读取目录下的文件和子目录,方便维护,如需要添加任何内容,将文件放在相应的目录下即可;FSO网站类似Window......