How to load chinese language basemap?

1062
3
Jump to solution
08-05-2019 01:39 AM
Eriche
by
New Contributor

How to load  basemap with language chinese to SceneView, like https://www.arcgis.com/home/webscene/viewer.html ?

0 Kudos
1 Solution

Accepted Solutions
KellyHutchins
Esri Frequent Contributor

You can find a gallery of the available base maps in this blog post: 

https://www.esri.com/arcgis-blog/products/arcgis-online/announcements/whats-new-in-esri-vector-basem...

Looks like they have base maps for Chinese (Hong Kong), Chinese (Taiwan) and Modern Chinese. In the snippet below I use the base map id for one of the Chinese base maps and set it as the map's base map. 

      var id = "7507c43a3cee4aa282453a11e9be62fc";
        var map = new Map({
          basemap: new Basemap({
            portalItem:{
              id:id
            }
          }),
          ground: "world-elevation"
        });

View solution in original post

3 Replies
BenElan
Esri Contributor

Hi Eric,

You can use an Esri vector basemap found here:

https://www.esri.com/arcgis-blog/products/arcgis-online/announcements/whats-new-in-esri-vector-basem...

There are 3 choices for Chinese (Hong Kong, Taiwan, and Modern)

KellyHutchins
Esri Frequent Contributor

You can find a gallery of the available base maps in this blog post: 

https://www.esri.com/arcgis-blog/products/arcgis-online/announcements/whats-new-in-esri-vector-basem...

Looks like they have base maps for Chinese (Hong Kong), Chinese (Taiwan) and Modern Chinese. In the snippet below I use the base map id for one of the Chinese base maps and set it as the map's base map. 

      var id = "7507c43a3cee4aa282453a11e9be62fc";
        var map = new Map({
          basemap: new Basemap({
            portalItem:{
              id:id
            }
          }),
          ground: "world-elevation"
        });
Eriche
by
New Contributor

Thank you very much! It's solved!

0 Kudos