Geolocation
2411 ワード
navigator.geolocation.getCurrentPossition(成功時関数、失敗時関数)Geolocation
<script>
function onGeoOk(position){
const latitude = position.coords.latitude;
const longitude = position.coords.longitude;
console.log("You live in", latitude , longitude)
}
function onGeoError(){
alert("error")
}
navigator.geolocation.getCurrentPosition(onGeoOk, onGeoError);
</script>
Geolocation
Weather APIで現在の天気を受信します.
fetchを使用してurlを取得します.
Reference
この問題について(Geolocation), 我々は、より多くの情報をここで見つけました
https://velog.io/@minj9_6/Geolocation
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
Reference
この問題について(Geolocation), 我々は、より多くの情報をここで見つけました https://velog.io/@minj9_6/Geolocationテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol