<div id="map"></div>
#map{
  height: 400px;
}
navigator.geolocation.getCurrentPosition(successCallback, errorCallback);

        function successCallback(position) {
            let lat=position.coords.latitude;
            let lon=position.coords.longitude;

            $("#lon").text(lon);
            $("#lat").text(lat);
            var map = L.map('map').setView([lat, lon], 13);

            L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
                attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
            }).addTo(map);

            L.marker([lat, lon]).addTo(map)
                .bindPopup('你現在的位置在這邊')
                .openPopup();

        }
        function errorCallback(error) {
            console.log(error)
        }

External CSS

  1. https://unpkg.com/leaflet@1.6.0/dist/leaflet.css

External JavaScript

  1. https://unpkg.com/leaflet@1.6.0/dist/leaflet.js
  2. https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js