前提
React
functionコンポーネント(classコンポーネントはNG)
useState
useEffect ?
以下の方法で書いても地図が表示されなくなります。
どこが間違っているのかよくわかりません。
js
1// 省略 2 3const ShopSearchScreen = () => { 4 const [viewport, setViewport] = useState({ 5 width: '100%', 6 height: '300px', 7 latitude: null, 8 longitude: null, 9 zoom: 14 10 }); 11 12 useEffect(() => { 13 navigator.geolocation.getCurrentPosition( 14 pos => setViewport({ 15 latitude: pos.coords.latitude, 16 longitude: pos.coords.longitude 17 }), 18 err => console.log(err) 19 ); 20 }, []); 21 22 // 省略 23 24 return(<> 25 <ReactMapGL 26 {...viewport} 27 onViewportChange={nextViewport => setViewport(nextViewport)} 28 mapboxApiAccessToken={MAPBOX_ACCESS_TOKEN} 29 mapStyle="mapbox://styles/mapbox/light-v9" 30 > 31 <Marker latitude={ 35.650184 } longitude={ 139.701269 }> 32 <a 33 href={`http://maps.google.com/maps?q=35.650184,139.701269`} 34 rel="noopener noreferrer" 35 target="_blank" 36 > 37 <img src={LocateIcon} alt="locate" /> 38 </a> 39 </Marker> 40 </ReactMapGL> 41 {/* 省略 */} 42 </>); 43 ); 44}
※ちなみに直接数字で、位置情報をuseStateに入れたらうまく表示される
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/07 23:34