react-map-glのPopup
1.Popupをインポート
import {Popup} form ‘react-map-gl’;
2.使い方
hoge(){
return (
<Popup
tipSize={5} //座標を指すチップのサイズ。
anchor=”top” //座標に対するポップアップの位置を示す文字列。オプションはtop
、bottom
、left
、right
、top-left
、top-right
、bottom-left
、bottom-right
。
longitude={~~~}
latitude={~~~}
onClose={function}
);
}