0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【簡単】react-map-glを日本語表示にする方法

Last updated at Posted at 2021-11-16

#はじめに
react-map-glを導入した際は、英語表記となっています。
これを日本語表示にしてみましたので、まとめてみます。
スクリーンショット 2021-11-16 23.44.14.png

#方法
いろいろ調べると以下の方法で変更できそうでした。
・MapBoxStudioで表示言語を日本語にして、StyleURLを取得する方法

#MapBoxStudioで表示言語を日本語にして、StyleURLを取得する方法
MapBoxへログインをして、MapBoxStudioへ入ります。
左側タブの各要素の言語表示をjapaneseへ変更します。
(Natural features,Place labels,Point of interest labels,Road network、transit,
Walking,cycling,etc)

スクリーンショット 2021-11-16 23.35.32.png


左上からカスタマイズしたstyleのURLを取得します。

スクリーンショット 2021-11-16 23.38.32.png


MapGLのmapStyleの中に先程取得したURLを入れます。。

map.js
<MapGL
   ref={mapRef}
   {...viewport}
   width= "100%"
   height= "450px"
   mapStyle="さきほど取得したURLをいれる"
   onViewportChange={setViewport}
   mapboxApiAccessToken={TOKEN}
>
 

日本語で表示することができました。
スクリーンショット 2021-11-16 23.48.10.png

##まとめ
今回はmap-react-glを日本語表示する方法をまとめてみました。
参考になれば幸いです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?